

My Talking Data
0
0
About My Talking Data
API for executing database queries on different dialects.
January 11,2024
Information
- GPTs Creator mytalkingdata.com
- Categories Other
- GPT Updated January 11,2024
- Updated June 03,2024
Capabilities
Share recipient
- OpenAI‘s GPT Store Public
Timeline

My Talking Data
By mytalkingdata.com
My Talking Data is inactive right now!
No Rating
Other
Category
10+
Conversations
Try Alternatives
How does my database look like?
Show data in a tabular format from each table.
Message ChatGPT
What Can My Talking Data Do with ChatGPT?
This Gpts for developers can do database query execution.
1. Function Calls
Field | Value |
---|---|
action_id | g-df44ffc9f73c7a47d2ea6f6fc36c13956ec98bd3 |
domain | query-api.mytalkingdata.com |
json_schema | {"openapi"=>"3.1.0", "info"=>{"title"=>"my_talking_data_api", "description"=>"API for executing database queries on different dialects.", "version"=>"0.1.0", "license"=>{"name"=>"Apache 2.0", "url"=>"https://www.apache.org/licenses/LICENSE-2.0.html"}}, "paths"=>{"/api/tool/list_sql_database_tool"=>{"post"=>{"tags"=>["tool"], "summary"=>"List Sql Database Tool", "description"=>"Tool for getting tables names.\n\nReturns a comma separated list of tables in the database.\n\n:param req: ListSqlDatabaseToolRequest model.\n:return: ListSqlDatabaseToolResponse model.", "operationId"=>"list_sql_database_tool", "requestBody"=>{"content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/ListSqlDatabaseToolRequest"}}}, "required"=>true}, "responses"=>{"200"=>{"description"=>"Successful Response", "content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/ListSqlDatabaseToolResponse"}}}}, "400"=>{"description"=>"Bad Request", "content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/Message"}}}}, "422"=>{"description"=>"Validation Error", "content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/HTTPValidationError"}}}}}, "security"=>[{"OAuth2PasswordBearer"=>[]}]}}, "/api/tool/info_sql_database_tool"=>{"post"=>{"tags"=>["tool"], "summary"=>"Info Sql Database Tool", "description"=>"Tool for getting schema for tables.\n\nReturns the schema and sample rows for the tables in the database.\n\n:param req: InfoSqlDatabaseToolRequest model.\n:return: InfoSqlDatabaseToolResponse model.", "operationId"=>"info_sql_database_tool", "requestBody"=>{"content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/InfoSqlDatabaseToolRequest"}}}, "required"=>true}, "responses"=>{"200"=>{"description"=>"Successful Response", "content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/InfoSqlDatabaseToolResponse"}}}}, "400"=>{"description"=>"Bad Request", "content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/Message"}}}}, "422"=>{"description"=>"Validation Error", "content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/HTTPValidationError"}}}}}, "security"=>[{"OAuth2PasswordBearer"=>[]}]}}, "/api/tool/query_sql_database_tool"=>{"post"=>{"tags"=>["tool"], "summary"=>"Query Sql Database Tool", "description"=>"Tool for querying a SQL database.\n\nReturns the result of the query.\n\n:param req: QuerySqlDatabaseToolRequest model.\n:return: QuerySqlDatabaseToolResponse model.", "operationId"=>"query_sql_database_tool", "requestBody"=>{"content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/QuerySqlDatabaseToolRequest"}}}, "required"=>true}, "responses"=>{"200"=>{"description"=>"Successful Response", "content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/QuerySqlDatabaseToolResponse"}}}}, "400"=>{"description"=>"Bad Request", "content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/Message"}}}}, "422"=>{"description"=>"Validation Error", "content"=>{"application/json"=>{"schema"=>{"$ref"=>"#/components/schemas/HTTPValidationError"}}}}}, "security"=>[{"OAuth2PasswordBearer"=>[]}]}}}, "components"=>{"schemas"=>{"HTTPValidationError"=>{"properties"=>{"detail"=>{"items"=>{"$ref"=>"#/components/schemas/ValidationError"}, "type"=>"array", "title"=>"Detail"}}, "type"=>"object", "title"=>"HTTPValidationError"}, "InfoSqlDatabaseToolRequest"=>{"properties"=>{"database_uri"=>{"type"=>"string", "title"=>"Database Uri"}, "table_names"=>{"type"=>"string", "title"=>"Table Names"}}, "type"=>"object", "required"=>["database_uri", "table_names"], "title"=>"InfoSqlDatabaseToolRequest", "description"=>"InfoSqlDatabaseToolRequest model."}, "InfoSqlDatabaseToolResponse"=>{"properties"=>{"table_schemas"=>{"type"=>"string", "title"=>"Table Schemas"}}, "type"=>"object", "required"=>["table_schemas"], "title"=>"InfoSqlDatabaseToolResponse", "description"=>"InfoSqlDatabaseToolResponse model."}, "ListSqlDatabaseToolRequest"=>{"properties"=>{"database_uri"=>{"type"=>"string", "title"=>"Database Uri"}}, "type"=>"object", "required"=>["database_uri"], "title"=>"ListSqlDatabaseToolRequest", "description"=>"ListSqlDatabaseToolRequest model."}, "ListSqlDatabaseToolResponse"=>{"properties"=>{"table_names"=>{"type"=>"string", "title"=>"Table Names"}}, "type"=>"object", "required"=>["table_names"], "title"=>"ListSqlDatabaseToolResponse", "description"=>"ListSqlDatabaseToolResponse model."}, "Message"=>{"properties"=>{"message"=>{"type"=>"string", "title"=>"Message"}}, "type"=>"object", "required"=>["message"], "title"=>"Message", "description"=>"Message model."}, "QuerySqlDatabaseToolRequest"=>{"properties"=>{"database_uri"=>{"type"=>"string", "title"=>"Database Uri"}, "query"=>{"type"=>"string", "title"=>"Query"}}, "type"=>"object", "required"=>["database_uri", "query"], "title"=>"QuerySqlDatabaseToolRequest", "description"=>"QuerySqlDatabaseToolRequest model."}, "QuerySqlDatabaseToolResponse"=>{"properties"=>{"query_result"=>{"type"=>"string", "title"=>"Query Result"}}, "type"=>"object", "required"=>["query_result"], "title"=>"QuerySqlDatabaseToolResponse", "description"=>"QuerySqlDatabaseToolResponse model."}, "ValidationError"=>{"properties"=>{"loc"=>{"items"=>{"anyOf"=>[{"type"=>"string"}, {"type"=>"integer"}]}, "type"=>"array", "title"=>"Location"}, "msg"=>{"type"=>"string", "title"=>"Message"}, "type"=>{"type"=>"string", "title"=>"Error Type"}}, "type"=>"object", "required"=>["loc", "msg", "type"], "title"=>"ValidationError"}}, "securitySchemes"=>{"OAuth2PasswordBearer"=>{"type"=>"oauth2", "flows"=>{"password"=>{"scopes"=>{}, "tokenUrl"=>"token"}}}}}, "servers"=>[{"url"=>"https://query-api.mytalkingdata.com", "description"=>"Production endpoint"}], "tags"=>[{"name"=>"health", "description"=>"Operations for checking the health of the API"}, {"name"=>"tool", "description"=>"Operations for getting information about the database"}, {"name"=>"query", "description"=>"Ask an LLM about the data in a database"}]} |
auth | {"type":"service_http","instructions":"","authorization_type":"bearer","verification_tokens":{},"custom_auth_header":""} |
privacy_policy_url | https://www.mytalkingdata.com/privacy.html |
My Talking Data reviews
Similar GPTs

Get job done by chatting with your databases
50

Chat Ur Data
by chaturdata.comChat Ur Data connects GPT to your databases, including Postgres, MySQL, DuckDB, Snowflake, and more!
200

SQL Chat
by askyourdatabase.comConnect and chat with your databases without writing SQL code - Supports MySQL, PostgreSQL, MongoDB, SQL Server, Snowflake. by AskYourDatabase.
10K
4.2

Talk to the datasette.io database
by simonwillison.netAsk questions that can be answered by https://datasette.io/content
71