Welcome to the Google AI Completion Example! This simple Go program demonstrates how to use the Google AI API to generate text completions using the langchaingo library.
What This Example Does
This example:
Sets up a connection to the Google AI API using your API key.
Sends a prompt to the API asking "Who was the second person to walk on the moon?"
Receives and prints the generated response.
How It Works
The program starts by setting up the context and retrieving your Google AI API key from the API_KEY environment variable.
It then initializes a new Google AI language model client using the googleai.New() function.
A prompt is defined: "Who was the second person to walk on the moon?"
The program sends this prompt to the Google AI model using llms.GenerateFromSinglePrompt().
Finally, it prints the generated answer to the console.
Running the Example
To run this example:
Make sure you have Go installed on your system.
Set your Google AI API key as an environment variable:
export API_KEY=your_api_key_here
Run the program:
go run googleai-completion-example.go
The program will output the AI-generated answer to the question about the second person to walk on the moon.
This example showcases how easy it is to integrate Google AI's powerful language models into your Go applications using the langchaingo library. Happy coding!