> ## Documentation Index
> Fetch the complete documentation index at: https://docs.valiqor.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Google GenAI (Gemini)

> Google GenAI integration for Valiqor tracing — coming soon.

<Info>
  Google GenAI (Gemini) auto-instrumentation is on the roadmap and not yet
  available. Check back for updates.
</Info>

In the meantime, you can trace Google GenAI calls manually using
`trace_workflow` and `trace_function` decorators:

```python theme={"system"}
from valiqor.trace import trace_workflow, trace_function
import google.generativeai as genai

genai.configure(api_key="your-gemini-key")
model = genai.GenerativeModel("gemini-pro")

@trace_function("gemini-call")
def ask_gemini(prompt):
    response = model.generate_content(prompt)
    return response.text

with trace_workflow("gemini-app"):
    result = ask_gemini("Explain quantum computing")
    print(result)
```

See the [Tracing Guide](/workflows/tracing) for more on manual
instrumentation.
