Update recursive-thinking-ai.py

This commit is contained in:
PhialsBasement
2025-04-27 07:44:39 +00:00
committed by GitHub
parent a4961ed48a
commit e9e84456f1

View File

@@ -8,7 +8,7 @@ import sys
import time
class EnhancedRecursiveThinkingChat:
def __init__(self, api_key: str = None, model: str = "anthropic/claude-3.7-sonnet:beta"):
def __init__(self, api_key: str = None, model: str = "mistralai/mistral-small-3.1-24b-instruct:free"):
"""Initialize with OpenRouter API."""
self.api_key = api_key or os.getenv("OPENROUTER_API_KEY")
self.model = model
@@ -317,4 +317,4 @@ def main():
print("Goodbye! 👋")
if __name__ == "__main__":
main()
main()