Spaces:
Sleeping
Sleeping
File size: 3,965 Bytes
0128def e3d7fcc 0128def b906348 0128def 3ce50c4 e0cc0af e8d4494 e3d7fcc 0128def 9335461 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
---
title: First Agent Template
emoji: ⚡
colorFrom: pink
colorTo: yellow
sdk: gradio
sdk_version: 5.20.1
app_file: app.py
pinned: false
tags:
- smolagents
- agent
- smolagent
- tool
- agent-course
---
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
# AI Assistant Agent with Useful Tools
This Space provides an AI assistant agent built with the `smolagents` framework that can perform several useful tasks through specialized tools. The agent uses the Qwen2.5-Coder-32B-Instruct model to understand user requests and choose the appropriate tool to fulfill them.
## What This Agent Does
This agent serves as an intelligent assistant that can:
- Analyze text and provide detailed statistics
- Get current time in different timezones around the world
- Perform semantic search on text to find relevant information
- Provide documentation about its own capabilities
The agent uses a Gradio interface for easy interaction through natural language. Simply type your request, and the agent will handle the rest!
## Available Tools
### 1. Text Analyzer
This tool analyzes text and provides comprehensive statistics including:
- Word count
- Character count
- Unique words count
- Average word length
- Most common words (top 5)
### 2. Current Time in Timezone
Gets the current local time for any timezone in the world using the pytz library. The tool accepts standard timezone format names like:
- 'America/New_York'
- 'Europe/London'
- 'Asia/Tokyo'
- 'UTC'
### 3. Semantic Search
This tool performs semantic search on a corpus of text to find the most relevant sections matching a query. It uses:
- Bag-of-words vectorization for text representation
- Cosine similarity for relevance scoring
- Smart text chunking for better results
Note: While designed to also work with PDF documents, the current UI doesn't support file uploads. The semantic search works with text provided directly in the conversation.
### 4. Tools Documentation
A special tool that lists all available tools and provides usage examples for each. Access this by asking about the agent's capabilities.
## Example Queries to Try
### Text Analysis
- "Analyze this text: The quick brown fox jumps over the lazy dog."
- "Give me statistics about this paragraph: Lorem ipsum dolor sit amet, consectetur adipiscing elit."
### Timezone Queries
- "What time is it in Tokyo?"
- "Get the current time in America/New_York"
- "Tell me the time in UTC"
### Semantic Search
- "Search for 'climate change' in this text: Global warming is the long-term heating of Earth's surface observed since the pre-industrial period due to human activities, primarily fossil fuel burning, which increases heat-trapping greenhouse gas levels in Earth's atmosphere."
- "Find information about 'artificial intelligence' in this text: [paste your text here]"
### Getting Help
- "What tools do you have?"
- "Show me how to use this agent"
- "Help"
## Requirements and Dependencies
This agent requires:
- smolagents framework
- pytz for timezone functionality
- numpy for semantic search vector operations
- PyPDF2 (optional, for PDF processing if enabled)
## Usage Tips
1. Be specific in your requests
2. For semantic search, provide substantial text to search within
3. For timezone queries, use standard timezone names
## Limitations
- The current UI does not support file uploads for PDF processing
- Semantic search uses a simplified algorithm and works best with moderate amounts of text
- The agent has a maximum context length, so very large inputs may be truncated
## Future Development
Plans for future enhancements include:
- Adding file upload capabilities
- Implementing more sophisticated semantic search algorithms
- Adding additional tools like web scraping (when environment permits)
- Improving the PDF handling capabilities
---
Feel free to contribute to this project by providing feedback or suggesting new tools that would be useful! |