Explore >> Select a destination


You are here

til.simonwillison.net
| | isthisit.nz
1.7 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
1.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.
| | simonwillison.net
2.3 parsecs away

Travel
| | OpenAI promised this at DevDay a few weeks ago and now it's here: their Chat Completion API can now accept audio as input and return it as output. OpenAI still ...
| | philodev.one
18.8 parsecs away

Travel
| oAuth is a hard to get into because of its (necessary) complexity. A basic understanding of the standard flow and the actors involved can help to make better decisions and understand the security implications of the choices.