/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

blog.scottlogic.com
| | til.simonwillison.net
3.3 parsecs away

Travel
| | OpenAI released an API for ChatGPT yesterday. It's 1/10th of the price of the text-davinci-003 model!
| | isthisit.nz
2.9 parsecs away

Travel
| | August 2024 Update: Now a solved problem. Use Structured Outputs. Large language models (LLMs) return unstructured output. When we prompt them they respond with one large string. This is fine for applications such as ChatGPT, but in others where we want the LLM to return structured data such as lists or key value pairs, a parseable response is needed. In Building A ChatGPT-enhanced Python REPL I used a technique to prompt the LLM to return output in a text format I could parse.
| | blog.daniemon.com
3.2 parsecs away

Travel
| | How to use ChatGPT function calling to have better control of the API's response, making it easier to use the generated content in your code.
| | blog.pamelafox.org
14.1 parsecs away

Travel
| When I build chat applications using the OpenAI chat completions API, I often want to send a user's previous messages to the model so tha...