top of page

Factual & Google Search Grounded Content Generation

Writer: lekhakAIlekhakAI

At ALwrity, Researching a topic with AI and generating factual and hallucination content is of paramount importance. Alwrity content generation depends heavily on web researched data from Google and AI researches. We have integrated Google grounded search in ALwrity to further factual & Hallucination free content generation with AI.


Gemini Grounding Search is a part of ALwrity application that allows users to interact with the Gemini API and leverage its powerful "Grounding" functionality. This application enables multi-turn searches and multi-tool queries, combining the power of Google Search, Grounding with Google Search, and content generation tools to deliver more accurate, informative, and contextually relevant responses.


The core purpose of this tool is to facilitate complex workflows that involve:


  • Enhancing factuality and recency through Grounding

  • Retrieving online artifacts for deeper analysis

  • Using media (images, videos, etc.) for multimodal reasoning or generation tasks

  • Conducting coding and technical troubleshooting

  • Accessing region-specific information

  • Translating content and finding relevant websites


With this tool, users can enrich search results by embedding real-time, web-based knowledge into their interactions with AI models.


 

Features

  • Grounding with Google Search: Seamlessly combine AI-generated responses with web-based, real-time data to enhance accuracy and relevancy.

  • Multi-turn Searches: Enables advanced workflows involving iterative questioning and response refinement.

  • Multi-tool Queries: Execute sophisticated queries by integrating multiple tools like Google Search and code execution.

  • Text and Content Generation: Generate accurate, relevant, and context-aware content based on the user's input and web search results.


 

Grounding with Google Search


Gemini Grounding Search uses the Grounding tool to enhance AI-generated responses by integrating search results from the web. This improves the accuracy, freshness, and factuality of the generated content, especially when answering specific queries.


Google Search Integration:


  • Free Tier: 1,500 Google Search queries per day (That's Generous).

  • Paid Tier: $35 per 1,000 additional queries.


This functionality works across all available languages, allowing for multi-language support and region-specific search capabilities.

 

ALwrity Grounding with Google Search


Grounding with Google Search is integrated within the tool to enhance the quality and accuracy of generated responses. By retrieving real-time data from the web, the tool can deliver answers that are up-to-date and more contextually relevant.


How Grounding Works:

  • Google Search: Each search query is supplemented by Google Search results, enriching the response with the latest, real-world information.

  • Languages: Grounding with Google Search supports all available languages, making it ideal for multilingual queries.


Code Breakdown

The application makes use of the google.genai Python client to integrate with the Gemini API. Here's an overview of the code:

Initialize Gemini Client

First, the Gemini API client is initialized using the provided API key:

client = genai.Client(api_key=os.environ['GEMINI_API_KEY'])

Perform the Search

Upon entering the search query and clicking the "Search" button, the application generates a response using the Gemini API, which integrates Google Search as a tool:


google_search_tool = Tool(google_search=GoogleSearch())
response = client.models.generate_content(
    model=model_id,
    contents=search_query,
    config=GenerateContentConfig(
        tools=[google_search_tool],
        response_modalities=["TEXT"],
    ))

Display Results

Once the search is performed, the response is displayed on the app, including the generated content and related search results:

st.header("Search Results")
if response.candidates[0].content.parts:    st.markdown(response.candidates[0].content.parts[0].text.replace('\n', '<br>'), unsafe_allow_html=True)

Grounding Metadata

If available, additional metadata, such as related search results, is displayed under the "Related Searches" header:

if hasattr(response.candidates[0], 'grounding_metadata'):    	       rendered_content = response.candidates[0].grounding_metadata.search_entry_point.rendered_content
t.markdown(rendered_content, unsafe_allow_html=True)

Conclusion


The Gemini Grounding Search app enhances search and content generation by integrating Grounding and Google Search, allowing users to access accurate, up-to-date, and relevant information. This tool simplifies complex workflows and improves the quality of AI-generated content, offering a seamless experience for both technical and non-technical users.

Comments

Rated 0 out of 5 stars.
No ratings yet

Add a rating

14th Remote Company, @WFH, IN 127.0.0.1

Email: info@alwrity.com

© 2025 by alwrity.com

  • Youtube
  • X
  • Facebook
  • Instagram
bottom of page