Loading...
Cathoven ESL Teaching Assistant

Cathoven ESL Teaching Assistant

0 0
0.0
( None Rating )
700 Action
Data Analysis Browsing DALLE•E

About Cathoven ESL Teaching Assistant

I'll analyse the difficulty of your English text, generate readings and quizzes, adapt texts in any level, and more!

Information

  • GPTs Creator cathoven.com
  • Categories Education
  • GPT Updated June 01,2024
  • Updated June 03,2024

Capabilities

  • Code Interpreter Data Analysis
  • Browsing Real-Time Retrieval
  • DALLE•E Image Creation

Share recipient

  • OpenAI‘s GPT Store Public

Timeline

Cathoven ESL Teaching Assistant
Cathoven ESL Teaching Assistant

By cathoven.com

Cathoven ESL Teaching Assistant is inactive right now!

4.4
Ratings (9)
Education
Category
700+
Conversations
Try Alternatives
What can you do for me?
Check the difficulty of my text.
Create reading quizzes.
Create readings with keywords and grammar points
Adapt a text in a certain CEFR level
Message ChatGPT

What Can Cathoven ESL Teaching Assistant Do with ChatGPT?

This GPT for English language learners and educators can analyze text difficulty, generate readings and quizzes, and adapt texts to any proficiency level.

1. Function Calls
Field Value
action_id g-629a8585039b727e0e97dc773d9f0d196002aff8
domain api2.cathoven.com
json_schema {"openapi"=>"3.1.0", "info"=>{"title"=>"Smart ESL Teaching Assistant APIs", "description"=>"Assesses the complexity of a given text based on CEFR levels, Readability, or Catile scores, or adapts a text to any CEFR level, or generates reading comprehension questions, or generates reading texts.", "version"=>"v1.0.0"}, "servers"=>[{"url"=>"https://api2.cathoven.com", "description"=>"Cathoven AI"}], "paths"=>{"/cefr/process_text2"=>{"post"=>{"description"=>"Processes a given text and returns its complexity levels based on CEFR standards.", "operationId"=>"AnalyzeCEFR", "x-openai-isConsequential"=>false, "parameters"=>[], "requestBody"=>{"content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/CEFRRequestSchema"}}}, "required"=>true}, "responses"=>{"200"=>{"description"=>"Successful response with complexity levels of the text.", "content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/CEFRResponseSchema"}}}}}, "deprecated"=>false}}, "/readability/get_readability"=>{"post"=>{"description"=>"Calculates various readability scores for the provided text", "operationId"=>"AnalyzeReadability", "x-openai-isConsequential"=>false, "requestBody"=>{"description"=>"Text input to calculate readability scores", "required"=>true, "content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/ReadabilityRequestSchema"}}}}, "responses"=>{"200"=>{"description"=>"Successful response with readability scores", "content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/ReadabilityResponseSchema"}}}}}}}, "/catile/difficulty"=>{"post"=>{"description"=>"Analyzes the difficulty of the provided text and returns Catile scores and insights.", "operationId"=>"AnalyzeCatile", "x-openai-isConsequential"=>false, "parameters"=>[], "requestBody"=>{"content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/CatileRequestSchema"}}}, "required"=>true}, "responses"=>{"200"=>{"description"=>"Catile analysis of the text", "content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/CatileResponseSchema"}}}}}, "deprecated"=>false, "security"=>[{"apiKey"=>[]}]}}, "/adaptor/adapt/"=>{"post"=>{"description"=>"Adapts the input text to the specified CEFR level", "operationId"=>"AdaptText", "x-openai-isConsequential"=>false, "parameters"=>[], "requestBody"=>{"content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/AdaptTextRequestSchema"}}}, "required"=>true}, "responses"=>{"200"=>{"description"=>"Successful response", "content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/AdaptTextResponseSchema"}}}}}, "deprecated"=>false}}, "/text-generator/generate"=>{"post"=>{"description"=>"Generates a text based on the specified difficulty level, word count, and optional parameters like topic, keywords, grammar, and genre.", "operationId"=>"GenerateText", "x-openai-isConsequential"=>false, "parameters"=>[], "requestBody"=>{"content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/GenerateTextRequestSchema"}}}, "required"=>true}, "responses"=>{"200"=>{"description"=>"Successful response", "content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/GenerateTextResponseSchema"}}}}}, "deprecated"=>false}}}, "components"=>{"schemas"=>{"CEFRRequestSchema"=>{"type"=>"object", "properties"=>{"text"=>{"type"=>"string", "description"=>"The text to be analyzed for CEFR level."}}, "required"=>["text"]}, "CEFRResponseSchema"=>{"type"=>"object", "properties"=>{"final_levels_str"=>{"type"=>"object", "properties"=>{"general_level"=>{"type"=>"string", "description"=>"CEFR General Level", "example"=>"C2.1"}, "vocabulary_level"=>{"type"=>"string", "description"=>"CEFR Vocabulary Level", "example"=>"C2.1"}, "tense_level"=>{"type"=>"string", "description"=>"CEFR Tense Level", "example"=>"A1.9"}, "clause_level"=>{"type"=>"string", "description"=>"CEFR Clause Level", "example"=>"C1.5"}}}}}, "ReadabilityRequestSchema"=>{"type"=>"object", "properties"=>{"text"=>{"type"=>"string", "description"=>"Text to analyze"}, "return_grades"=>{"type"=>"boolean", "description"=>"Flag to return readability grades"}}, "required"=>["text", "return_grades"]}, "ReadabilityResponseSchema"=>{"type"=>"object", "properties"=>{"readability"=>{"type"=>"object", "properties"=>{"scores"=>{"type"=>"object", "additionalProperties"=>{"type"=>"number"}}, "grades"=>{"type"=>"object", "additionalProperties"=>{"type"=>"string"}}}}}}, "CatileRequestSchema"=>{"properties"=>{"text"=>{"type"=>"string", "description"=>"The text to be analyzed for difficulty"}}, "type"=>"object", "required"=>["text"]}, "CatileResponseSchema"=>{"properties"=>{"scores"=>{"type"=>"object", "properties"=>{"catile"=>{"type"=>"number"}, "decoding"=>{"type"=>"number"}, "vocabulary"=>{"type"=>"number"}, "sentences"=>{"type"=>"number"}, "patterns"=>{"type"=>"number"}}}, "difficult_words"=>{"type"=>"array", "items"=>{"type"=>"string"}}, "longest_sentence"=>{"type"=>"string"}, "mean_sent_length"=>{"type"=>"number"}, "word_count"=>{"type"=>"number"}, "age"=>{"type"=>"array", "items"=>{"type"=>"string"}}, "grade"=>{"type"=>"array", "items"=>{"type"=>"number"}}}, "type"=>"object"}, "AdaptTextRequestSchema"=>{"properties"=>{"text"=>{"type"=>"string", "description"=>"Original text to be adapted"}, "target_level"=>{"type"=>"integer", "description"=>"Target language level for the adaptation"}}, "type"=>"object", "required"=>["text", "target_level"], "title"=>"AdaptTextRequestSchema"}, "AdaptTextResponseSchema"=>{"properties"=>{"adaptation"=>{"type"=>"string", "description"=>"Adapted text"}, "modified_after_levels"=>{"type"=>"object", "properties"=>{"ignored_words"=>{"type"=>"array", "items"=>{"type"=>"string"}}, "final_levels_str"=>{"type"=>"object", "additionalProperties"=>{"type"=>"string"}}}}, "before_str"=>{"type"=>"object", "additionalProperties"=>{"type"=>"string"}}, "after_str"=>{"type"=>"object", "additionalProperties"=>{"type"=>"string"}}}, "type"=>"object", "title"=>"AdaptTextResponseSchema"}, "GenerateTextRequestSchema"=>{"type"=>"object", "properties"=>{"level"=>{"type"=>"integer", "description"=>"Difficulty level of the text", "minimum"=>0, "maximum"=>5, "example"=>1}, "n_words"=>{"type"=>"integer", "description"=>"Number of words in the text", "minimum"=>10, "maximum"=>1000, "example"=>100}, "topic"=>{"type"=>"string", "description"=>"Optional topic for the text", "example"=>"space cats"}, "keywords"=>{"type"=>"array", "items"=>{"type"=>"string"}, "description"=>"Optional keywords to include in the text", "example"=>["mice", ["duck", "VERB"]]}, "grammar"=>{"type"=>"array", "items"=>{"type"=>"string"}, "description"=>"Optional grammar elements to use in the text", "example"=>["past simple", "past continuous"]}, "genre"=>{"type"=>"string", "description"=>"Optional genre of the text", "example"=>"sci-fi"}}, "required"=>["level", "n_words"]}, "GenerateTextResponseSchema"=>{"type"=>"object", "properties"=>{"text"=>{"type"=>"string", "description"=>"Generated text"}, "result"=>{"type"=>"object", "properties"=>{"final_levels_str"=>{"type"=>"object", "properties"=>{"general_level"=>{"type"=>"string"}, "vocabulary_level"=>{"type"=>"string"}, "tense_level"=>{"type"=>"string"}, "clause_level"=>{"type"=>"string"}}}}}}}}}, "auth"=>{"type"=>"service_http", "authorization_type"=>"bearer", "verification_tokens"=>{"openai"=>"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoyMDIyMzE1MzcyLCJqdGkiOiIyNDk0NDEzZmVjNzA0ODkwYTdhZDQ5Y2JkZDA4ZDdhNyIsInVzZXJfaWQiOjI4fQ.mK6-9Pm4MZ6QmCukJ0I3136_SeITizit56RDeioZ4OI"}}}
auth {"type":"service_http","instructions":"","authorization_type":"bearer","verification_tokens":{},"custom_auth_header":""}
privacy_policy_url https://www.cathoven.com/privacy-policy/
Capabilitiy Function Tools
Code Interpreter / Data Analysis Execute Python code for automation, calculations, and data analysis. Python
Web Browsing Real-Time Access and search the internet for information, articles, and data. Browser
DALLE•E Generate unique images based on textual descriptions provided. Dalle

FAQs

Currently, this GPTs is not free and is available exclusively to ChatGPT Plus users.

Yes, besides requiring a ChatGPT Plus membership, if you use the GPT-4 model (with DALL·E, browsing, and data analysis), the limit is 25 'GPTs' messages / 3 hours, More limited than normal 40 GPT4 responses per 3 hours, 

The enterprise version of ChatGPT is,  100 GPT-4 messages per 3 hours.

Cathoven ESL Teaching Assistant is publicly available in the upcoming OpenAI's GPT Store, making it widely accessible to anyone interested in using this advanced ChatGPT.

Cathoven ESL Teaching Assistant is owned by cathoven.com, who has also created 4 other GPTs, namely Reading Level Adaptor, HSK Text Analyser, English Reading Generator.

no, we found no file uploaded. You can check the function section to see if there are other unique features. If not, this GPTs is just a simple prompt engineering, and its knowledge base is synchronized with the general ChatGPT, latest training up to April 2023.

No, only cathoven.com can edit this GPTs. They can configure and update GPTs through GPT Builder at https://chat.openai.com/gpts/editor/g-BsM5xvAjF. The last modification date of Cathoven ESL Teaching Assistant was 2024-06-01 00:55:56 UTC.

Yes, conversations with Cathoven ESL Teaching Assistant will be recorded. OpenAI keeps these records, and you can share your conversations via a link. Refer to OpenAI's user privacy and data security policies for more information.

Yes, if cathoven.com selected "Use conversation data in your GPT to improve our models" (in the GPTs Configure pages of Additional Settings), it means your conversations will be used for training and will influence this GPT AI agent.

Cathoven ESL Teaching Assistant reviews

0.0
( None Rating )

Similar GPTs

AI ESL Teacher
AI ESL Teacher
by MC SANTE PLUS SERVICES LLC
An English learning assistant for all levels, focusing on comprehensive language skills.
10
English Teacher Cat
English Teacher Cat
by 9.tapgpts.com
I'm an English teacher specializing in improving vocabulary, grammar, and pronounciations
2
ESL Teaching Assistant
ESL Teaching Assistant
by mdepjapan.com
Crafted by MDEPJapan, leveraging 20+ years of English teaching expertise in Japan, the ESL Teaching Assistant revolutionizes language instruction. Elevate your lessons with this innovative, transformative tool. Start teaching smarter today!
50

Top