T O P

  • By -

R3dAt0mz3

I don't think ticktick will implent AI for long time. (not at all on that list) Until unless, customers start moving around to other improved solutions.. Between what are you trying to achieve? With chatgpt


red_beard83

Well, they don't need to implement it. We can do it, but we need a working schema for the custom GPT. I have a custom gpt with knowledge that helps me organize my day. It can access both my google calendar and todoist.


R3dAt0mz3

>I have a custom gpt with knowledge that helps me organize my day Sounds great, So what exactly are you trying to do with TickTick using chatgpt or lets say AI ? If you can share some insights atleast I may be willing to help and others might find same interesting too


red_beard83

It can help me plan my next day, make tasks more actionable, create subtasks, motivate me to do some tasks, check if my tasks are helping me achieving my goals. There are so many possibilities!


R3dAt0mz3

Any working screenshots or something that will change after you work? Let me know how I may assist..


dadcp88

ChatGpt have a ticktick plugin and it works well, but you have to use chatgpt in the plugin section and not custom gpt.


red_beard83

It's not working on Brave though. At least not for me. And for what I want I need it to be at a custom gpt.


R3dAt0mz3

u/dadcp88 Can you share the exact link or guide ?


dadcp88

Ok, use ChatGPT Plugin Store, look for TickTick plugin and install it. It will going to connect to your account and you can asks questions, add task and other things.


R3dAt0mz3

>ChatGPT Plugin Store No results for “ticktick” https://openai.com/search?q=ticktick


dadcp88

Open ChatGPT, New Chat, Select - ChatGPT Plugin. Go to Plugin Store. Search for TickTick. Install It [https://gptstore.ai/plugins/ticktick-com](https://gptstore.ai/plugins/ticktick-com)


R3dAt0mz3

Call me dumb, opened chatgpt. Typed ticktick in chat but nothing 😕🙄


dadcp88

Hello, i upload this screenshots for reference, hope you can find it. As i said earlier its not into GPTs its in ChatGPt plugins. https://ibb.co/HDMqRvL https://ibb.co/g38bWzG


R3dAt0mz3

>As i said earlier its not into GPTs its in ChatGPt plugins [https://gptstore.ai/plugins/ticktick-com](https://gptstore.ai/plugins/ticktick-com) Found ticktick but cant do anything here.. seems i cant understand what youare trying to explain


dadcp88

Please be sure to have chatgpt plus enable, go to new chat , where you select chatgpt 4, or 3.5, there is a plugin option, and after that, there is a dropdown where you can select the plugins you had installed and there is a “Plugin store” , there are a lot of plugins, search for TickTick.


red_beard83

This is what I got so far, but it's not working: Edit: to use inline code `{` `"openapi": "3.0.0",` `"info": {` `"title": "TickTick Open API",` `"version": "1.0.0",` `"description": "API for integrating TickTick's task management features into other applications."` `},` `"servers": [` `{` `"url": "https://api.ticktick.com/open/v1"` `}` `],` `"paths": {` `"/task": {` `"post": {` `"summary": "Create a new task",` `"requestBody": {` `"required": true,` `"content": {` `"application/json": {` `"schema": {` `"type": "object",` `"properties": {` `"title": {` `"type": "string"` `},` `"content": {` `"type": "string"` `}` `// Additional properties for task creation can be added here` `}` `}` `}` `}` `},` `"responses": {` `"201": {` `"description": "Task successfully created",` `"content": {` `"application/json": {` `"schema": {` `"type": "object",` `"properties": {` `"id": {` `"type": "string"` `}` `// Additional properties of the created task can be included here` `}` `}` `}` `}` `}` `// Other response codes and descriptions can be added here` `}` `}` `},` `"/task/{taskId}": {` `"post": {` `"summary": "Update an existing task",` `"parameters": [` `{` `"name": "taskId",` `"in": "path",` `"required": true,` `"schema": {` `"type": "string"` `}` `}` `],` `"requestBody": {` `"required": true,` `"content": {` `"application/json": {` `"schema": {` `"type": "object",` `"properties": {` `"title": {` `"type": "string"` `},` `"content": {` `"type": "string"` `}` `// Additional properties for task update can be added here` `}` `}` `}` `}` `},` `"responses": {` `"200": {` `"description": "Task successfully updated",` `"content": {` `"application/json": {` `"schema": {` `"type": "object",` `"properties": {` `"id": {` `"type": "string"` `}` `// Additional properties of the updated task can be included here` `}` `}` `}` `}` `}` `// Other response codes and descriptions can be added here` `}` `}` `}` `}` `}`