A tool that uses the Gemini API to analyze the strength of arguments and provide feedback.
git clone https://github.com/yourusername/argument-analyzer.git
cd argument-analyzer
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt
.env file in the root directory with your Gemini API key:
GEMINI_API_KEY=your_api_key_here
from src.main import analyze_argument
result = analyze_argument("Your argument here")
print(result)
Run tests:
pytest
MIT License