Socket
Book a DemoInstallSign in
Socket

github.com/czc09/langchaingo/examples/googleai-completion-example

Package Overview
Dependencies
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/czc09/langchaingo/examples/googleai-completion-example

Source
Go
Version
v0.0.0-20241103065411-5ea7b6bf9250
Version published
Created
Source

Google AI Completion Example

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!

FAQs

Package last updated on 03 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts