mirror of
https://github.com/vxcontrol/langchaingo.git
synced 2026-07-21 00:45:22 -04:00
450c02a722
chore: update all examples to use v0.1.14-pre.4 - Remove replace directives from 5 examples that had local path references - Update all 75 example go.mod files to use the latest pre-release version - Ensures examples work correctly for users who clone the repository
OpenAI Function Call Example
Welcome to this cheerful example of using OpenAI's function calling capabilities with the LangChain Go library! 🎉
What does this example do?
This example demonstrates how to use OpenAI's GPT-3.5-turbo model to generate responses and make function calls based on user input. It's like having a smart assistant that can not only answer questions but also fetch real-time information for you! 🤖💬
Here's a breakdown of what happens in this exciting journey:
- We set up an OpenAI language model using the LangChain Go library.
- We ask the model about the weather in Boston and Chicago.
- The model recognizes that it needs to fetch weather information and makes a function call to
getCurrentWeather. - We simulate getting the weather data (it's always sunny in this example! ☀️).
- We provide the weather information back to the model.
- Finally, we ask the model to compare the weather in both cities.
Key Features
- 🌟 Uses OpenAI's GPT-3.5-turbo model
- 🛠️ Demonstrates function calling capabilities
- 🌤️ Simulates weather data retrieval
- 🔄 Shows how to manage conversation context and message history
How it Works
- Initial Query: We ask about the weather in Boston and Chicago.
- Function Recognition: The model recognizes it needs to call the
getCurrentWeatherfunction. - Data Retrieval: We simulate fetching weather data for both cities.
- Context Update: We update the conversation context with the weather information.
- Comparison: We ask the model to compare the weather, and it provides a human-like response.
Fun Fact
In this example, Boston is always 72 and sunny, while Chicago is 65 and windy. Looks like Boston is winning the weather game today! 🏆
So, grab your virtual sunglasses and enjoy exploring this example of AI-powered weather inquiries! ☀️🕶️