Questions tagged [chatgpt-plugin]

15 questions
1
vote
1 answer

AskAI encounter an error after installing in Eclipse

Hello I'm trying to install ChatGpt in eclipse but after installing it ask AI gives error. I followed the instruction from https://github.com/gradusnikov/eclipse-chatgpt-plugin This is the error message which I receive. Unable to run the task:…
Rohit Mathur
  • 41
  • 1
  • 9
1
vote
0 answers

Errors when running Multi GPT

I have downloaded multi gpt and I am on mac. When i try to launch it using python -m multigpt I get AttributeError: module 'lmql' has no attribute 'query' Traceback (most recent call last): File…
techfan
  • 11
  • 2
1
vote
0 answers

GPT Commit Generator for Visual Studio 2022

There are cool Visual Studio Code extensions for generating automatic commit messages using ChatGPT API. Like…
1
vote
0 answers

Nodejs OpenAI ChatGPT API error 400 without error

i am trying to use official openai nodejs with my backend, but i keep getting 400 empty error.. i am check the api key but still getting error, here is my code implementation export class ChatGPTServiceImplemnt implements ChatGPTService { async…
Gbenga B Ayannuga
  • 2,407
  • 3
  • 17
  • 38
1
vote
0 answers

ChatGPT plugin render markdown syntax

How to ask the ChatGPT plugin properly request and render with Markdown? I see Speak plugin does this in request and returns in customized markdown. How does ChatGPT know how to request and render the customized markdown response like…
angelokh
  • 9,426
  • 9
  • 69
  • 139
0
votes
0 answers

OpenAI API Unsupported Media Type (415 error)

** I am working on a custom chatbot using OPEN AI's APIs.I am trying to upload a file to OPEN AI api servers This is the endpoint I am using to post the upload request. Endpoint: https://api.openai.com/v1/files. I am getting this error: Error…
0
votes
1 answer

OpenAI API GPT-3.5 Translation Issue: Incorrect Output for Turkish to Japanese Translation

I am using the OpenAI API and trying to translate Turkish data to Japanese using the GPT-3.5 model. However, the results I'm getting are not as expected. The provided JSON data contains Turkish language codes ("tr") that should be replaced with the…
0
votes
1 answer

OpenAI Authentication error: No API key provided for open ai api

AuthenticationError: No API key provided. You can set your API key in code using 'openai.api_key = ', or you can set the environment variable OPENAI_API_KEY=). If your API key is stored in a file, you can point the openai module at it with…
0
votes
0 answers

ChatGPT implementation in MIT's Scratch?

I'm new to StackOverflow so anything I'm doing wrong, please tell. I'm a high school student who has grown up using Scratch, and I found it incredibly useful in inspiring young people to code. Now that I've learned python, java, and actually…
0
votes
1 answer

How to get ChatGPT to return the source of information returned when trained with own data

I'm trying to use the include my own data to train with ChatGPT by storing the data in a vector database (Pinecone). I'm using the ChatGPT retrieval plugin to vectorise the data and store it in Python. The plugin can be found here:…
Mark
  • 730
  • 1
  • 8
  • 22
-1
votes
0 answers

OpenAI api is not working after i changed the api

void callAPIs(String personalityType, String weightCount) async { ImageService imageService = ImageService(); String gptPrompt = "Analyze My personality type and create a stable diffusion prompt. Do not ever write a word except the…
-1
votes
1 answer

Chat GPT API Key Troubleshooting

I'm currently trying to make a dashboard in excel that allows me to utilize Chat GPT for answering basic excel questions for co-workers. The problem it keeps returning says that I'm out of usage with API Key that I have from Chat GPT API, but I do…
-1
votes
1 answer

how to read and write to a folder on my computer using chatgpt

I know chatgpt can not access the file system on a computer and needs a plugin or API to do that, and I am on the waiting list for them. But I want to implement it now. I can for example put a file on google cloud and create a shared link and give…
kevbuntu
  • 461
  • 1
  • 12
  • 27
-2
votes
0 answers

If few plugins are enabled how GPT finds out which one to use for a given query? Any examples/prompts

I want to find out how GPT determines which plugins to use for a given query, for example if user asks for a weather in New York and GPT have to use weather plugin, or any latest news. Which kind of prompts help GPT to select different enabled tools…
-3
votes
1 answer

Implementing ChatGPT Prompts for Efficient and Creative Output

I've been experimenting with OpenAI's ChatGPT and finding it to be quite an impressive tool for text generation. However, the efficiency of output, as well as the creativity involved, often seems to be largely influenced by the prompt design…