[SURVEY] How do you use Custom GPT ?

Terimouse

Newbie
Joined
Feb 14, 2021
Messages
35
Reaction score
21
Hello dears,

I'm writing an article on custom GPTs and I wanted to know : what do you use Custom GPTs for ?

Here is are my personal use cases :
  • Analyze code by giving him documentation + the zipped code
  • SEO writer by giving him plenty of SEO courses
 
Mostly on customising documentation. By using custom GPT we can structure our output
 
tbh I dont use custom GPT's even though they provide a easy implementation to your data and API's. I do like using the builder though to create system prompts.
 
Bot
tbh I dont use custom GPT's even though they provide a easy implementation to your data and API's. I do like using the builder though to create system prompts.
Both are same , custom GPT and builder. Isn't it?
 
custom GPT's are just system prompts with additional instructions for how to interact with files or API endpoints.

For example the system prompt for a LibrarianGPT could be
"""
You are LibrarianGPT, help the user with their library needs

You can search the libraries index using
searchLibrary(query)

You can checkout a book using
checkoutBook(bookId)
"""

all llms do is predict text, so the way they access external resources is by generating (in text) queries to madeup functions which a intermediary process between the user and llm will then parse and append the responses of the queries before feeding it back into the llm.

You give the builder a simple instruction ("build me a librarianGPT") then the builder expands on your request.

My reason for using the builder is that openai probably put thought / trained it to be exceptionally well at crafting instructions based off a smaller starting instruction.
 
Is a custom one leas restricted?
Or it's the same
I mean about what chatgpt refuse to write about
 
Custom GPT offers several pre-trained models, each with different capabilities and languages.
 
Back
Top