Skip to content

Latest commit

 

History

History
26 lines (26 loc) · 1.08 KB

outline.md

File metadata and controls

26 lines (26 loc) · 1.08 KB
  • Pre-requisites
  • Demonstartion: Spam detection without functions.
  • The problem
    • Bridging natural language and computer language.
    • Cleanly interface software with LLM results.
    • Avoid string manipulation and hacks.
  • The solution
    • New GPT "function_calls"
  • What is it?
    • You give GPT a list of functions your application has.
    • GPT intelligently selects the correct function based on context.
  • Real-world applications
    • Robotics (call robot function based on incoming data)
    • Text-based interfaces (run application feature based on English requests)
    • Giving GPT the ability to retrieve data after the training cutoff date.
  • Caveats
    • Only works with some models: gpt-4-0613, gpt-3.5-turbo-0613
    • non-helpful 400 errors are common starting out.
  • Looking forward