Filter
Exclude
Time range
-
Near
Top 3 most-popular AI tools 2026: @OpenAIChat (~250M users) – still leading @bardAI (~110M) – catching up fast @ClaudeAI (~95M) – growing steadily AI adoption shows no signs of slowing. 🤖💡 #AI #Tech
2
2
7
ilk agent’ı yaz (~20 satır) from agno.agent import Agent from agno.models.openai import OpenAIChat from agno.tools.yfinance import YFinanceTools agent = Agent( name=“finance agent”, model=OpenAIChat(id=“gpt-4o”), tools=[YFinanceTools()], instructions=“borsa verilerini analiz et.”, ) agent.print_response(“nvidia hissesi nasıl?”) bu kadar. çalıştır.

1
8
246
Replying to @PR0GRAMMERHUM0R
automatic code fixer. try { // some code } catch (err) { openaichat(err, "fixthis") file_write(thisfile) app.reload() }
15
466
Replying to @AgnoAgi
@ashpreetbedi Hey @agno_ai team! 👋 Found a subtle issue with Perplexity integration. The OpenAIChat parent class falls back to `OPENAI_API_KEY` when `api_key` isn't explicitly set, which overrides provider-specific keys. **Quick fix:** Always pass `api_key` explicitly: ```python Perplexity(id="sonar-pro", api_key=os.getenv("PERPLEXITY_API_KEY")) ``` Otherwise the inheritance chain causes 401 errors even with valid Perplexity keys. Might be worth documenting this pattern for non-OpenAI providers! 🚀 #agno #perplexity #ai #debugging
3
2
165
【Agno:マルチモーダルエージェント構築のための軽量ライブラリ】 もともと「Phidata」と呼ばれていたフレームワークが「Agno」に改名されました。Agnoは、メモリ・知識・ツールを備えたマルチモーダルエージェントを構築するためのPython軽量ライブラリです。 基本的な使い方は、OpenAIChat などのモデルを指定してAgentインスタンスを作成するだけ。DuckDuckGoToolsなど様々なツールが提供されており、Vector DBを使ったナレッジベース機能もサポートされています。 特筆すべき機能として、複数のエージェントをチームとして協調させるマルチエージェント機能があり、Route Mode、Coordinate Mode、Collaborate Modeの3つの協調モードが用意されています。 また、Workflowクラスを継承して自由にワークフローを実装できる機能や、session_stateによる状態管理、トレーシング機能、UI機能なども備えています。
1
2
16
2,068
私もね、英語の文を修正してもらってる grokにだけど 弁護士にメール書くときにほぼそのまま英語に訳したのがGeminiとopenAIchat GPTだけど、私が言いたい事を汲み取って言い方もドンピシャにしたのがGrokだから、 文章読解してくれるのはgrokが秀でてたと思った 画像にあるのは、gumtreeでピアノを売るときの買い手の人へのメッセージの修正
Replying to @MarioNawfal
5. GPT‑4.1 Is Better at Frontend Web Development GPT‑4.1 shows big improvements over GPT‑4o in frontend coding. It can build web apps that not only work better but also look cleaner and more polished. In OpenAI’s tests, paid human reviewers preferred websites made by GPT‑4.1 over GPT‑4o in 80% of cases.
4
487
24 Feb 2025
基于 AI 的智能房产中介系统,通过整合多平台数据和 AI 分析帮助用户高效找房 🏡 技术架构 1. Firecrawl(数据抓取层) · 核心作用:跨平台房产数据抓取引擎 · 实现方式: - 通过 API 调用多房产网站 URL(99acres/Housing.com等) - 智能提取结构化数据(价格/户型/地址等) - 支持动态 URL 生成(如 https://.../property-for-sale-in-{city}/*) 2. @AgnoAgi(AI Agent 框架) · 核心作用:任务流程控制与决策中枢 · 关键实现: - 封装 Agent 类管理 AI 分析流程 - 集成 OpenAI 模型(OpenAIChat 模块) - 通过 agent run() 执行多步骤分析(房源筛选/价值评估/报告生成) 3. @pydantic(数据建模层) · 核心作用:结构化数据验证与类型约束 · 典型应用: - 定义 PropertyData(房源信息模型) - 构建 LocationsResponse(区位分析模型) - 确保 Firecrawl 返回数据符合预设格式 4. LLM(智能分析层) · 核心作用:自然语言处理与决策生成 · 工作流程: - 接收原始房产数据 - 执行多维度分析(价格趋势/投资潜力/区位优势) - 生成结构化报告(Markdown 格式输出) · 模型选择:支持 gpt-4o 或轻量级 o3-mini 5. Streamlit(交互展示层) · 核心作用:构建零前端代码的Web界面 · 功能实现: - 侧边栏配置 API 密钥/模型选择 - 主界面展示搜索表单(城市/类型/预算) - 动态加载结果(带展开折叠的 Markdown 报告) ⚙ 技术协作流程图 用户输入 → Streamlit 界面 → Firecrawl 抓取 → Pydantic 校验 → Agno 调度 → LLM 分析 → 生成报告 → Streamlit 展示
7
69
263
36,333
11 Dec 2024
基于 Phidata 框架的智能图文分析系统配置 「使用 Phidata 框架配置 AI Agent,通过整合 GPT-4 和 DuckDuckGo 搜索功能,实现了对克拉科夫圣玛利亚教堂图片的分析和相关新闻搜索」 技术框架: - Phidata Agent:AI Agent 框架 - OpenAI GPT-4o:大语言模型引擎 - DuckDuckGo:搜索工具集成 关键功能点: 1. Agent 配置层 agent = Agent(...) 统一管理模型和工具 2. 模型层 model=OpenAIChat(id="gpt-4o") 处理核心智能分析 3. 工具层 tools=[DuckDuckGo()] 扩展搜索能力 4. 输出层 stream=True 流式实时响应 markdown=True 格式化输出 数据流向: - 输入:图片 URL → Agent 处理 - 处理:GPT-4o 分析 DuckDuckGo 搜索 - 输出:实时流式 Markdown 格式结果
🤯 Multi-Modal Agents can understand images and then make function calls accordingly. This is the way 🚀
7
22
2,367
Johansson’s AI Battle Mimics Bette Midler’s Ford Case - Bootleg Betty #ai, #BetteMidler, #FordMotorCo, #OpenAIChat, #ScarlettJohansson, #Sky, #Voice bootlegbetty.com/2024/05/23/…
3
98
"With just over a dozen lines of code, you can create an AI-powered search tool that runs on your machine. The packages that need to be installed are: streamlit, phidata, duckduckgo-search, openai. After that, use the following code: ```python # Import the required libraries import streamlit as st from phi.assistant import Assistant from phi.tools.duckduckgo import DuckDuckGo from phi.llm.openai import OpenAIChat from dotenv import load_dotenv import os # Load environment variables from .env file load_dotenv() # Get OpenAI API key from .env file openai_access_token = os.getenv("OPENAI_API_KEY") # Set up the Streamlit app st.title("AI Search Assistant 🤖") st.caption("This app allows you to search the web using AI") if openai_access_token: # Create an instance of the Assistant assistant = Assistant( llm=OpenAIChat( model="gpt-4o", max_tokens=1024, temperature=0.9, api_key=openai_access_token ), tools=[DuckDuckGo()], show_tool_calls=True ) # Get the search query from the user query = st.text_input("Enter the Search Query", type="default") if query: # Search the web using the AI Assistant response = assistant.run(query, stream=False) st.write(response) else: st.error("OpenAI API key not found. Please check your .env file.") ``` Then you will have a search tool running on your machine (locally) using DuckDuckGo and GPT-4o (as shown)." DTT
2
212
penAI's ChatGPT for Businesses🌐🚀 #chatgpt #openai #businessfacts Embrace the AI Revolution! Sign up today to explore how ChatGPT's corporate version can transform your business.🤖🌟 #chatgpt4 #openaichat #openaijukebox #artificialintelligence #artificial #intelligence #world
1
1
132
قامت مايكروسوف بتعيين (سام ألتمان) من شركة OpenAI لقيادة الأبحاث في مختبر الأبحاث المتطور، وقد اتخذت مايكروسوفت هذه الخطوة بعد أن رفض عملاق الذكاء الاصطناعي OpenAI عودة سام ألتمان إلى منصب الرئيس التنفيذي. وبحسب وكالات الأنباء، فقد حدثت فوضى في المنظمة بعد عدم قيام شركة OpenAI باستعادة سام ألتمان، أحد مؤسسي الشركة، وقد هدد أكثر من ٧٠٠ من موظفي OpenAI البالغ عددهم ٨٠٠ موظف تقريبًا بتولي وظائف في مايكروسوف إذا لم تتم إعادة ألتمان المخلوع إلى منصب الرئيس التنفيذي. وفقًا للتقارير، فإن OpenAIChat، المعروفة بإنشاء روبوتات الدردشة GPT أطاحت بألتمان لأنه كان يتجاهل المخاطر التي يشكلها الذكاء الاصطناعي ويقود الشركة بعيدًا عن أهدافها، وبحسب وكالات الأنباء، فقد تم أيضًا إقالة الرئيس السابق للشركة جريج بروكمان، الأمر الذي أصبح بسببه مستقبل الشركة التقنية هذه على المحك. #تقنية
1,068
🎉 SynVision is now offering our tailored AI Chatbot service for FREE 🤖Watch as our AI-assistant revolutionizes your business with innovative solutions & support. Yet to experience SynVision? Dive in and witness the magic 🌐synvision.ai/ #SynVisionAI #OpenAIChat
2
1
5
5,782
📢 Exciting Innovations in the Tech World! 🌟 Join us on Twitter Spaces for an interactive discussion and celebration of the game-changing technologies shaping our future! The event will take place on Saturday, July 1, 2023, at 7:00 PM Eastern time. We're thrilled to announce the contenders deserving recognition: 1️⃣ Spatial (spatial.io/): Spatial has revolutionized collaboration in the virtual space, enabling immersive and interactive 3D meetings, virtual workspaces, and real-time content interaction. Say goodbye to geographical boundaries and embrace the future of seamless remote collaboration! #Spatial #VirtualCollaboration 2️⃣ Zentarius (zentaurios.app/): Zentarius is an innovative authoring and promotional platform that empowers content creators to effortlessly generate compelling narratives, stories, and articles. With advanced algorithms and intuitive tools, Zentarius enhances creativity and streamlines the process of creating and promoting engaging content. Get ready for a paradigm shift in authoring and promotional tools! #Zentarius #ContentCreation 3️⃣ OpenAI Chat (chat.openai.com/): OpenAI Chat has taken conversational AI to new heights with its powerful language model, GPT-3.5. Developers can build highly engaging chatbots, virtual assistants, and interactive conversational experiences that exhibit natural language understanding and human-like interactions. Discover the limitless potential of AI-driven conversations! #OpenAIChat #ConversationalAI 4️⃣ BandLab (bandlab.com/): BandLab has transformed music creation and collaboration with its web-based production suite. Musicians and music enthusiasts worldwide can now effortlessly create, record, edit, and share music in a virtual studio environment. Unleash your musical talent and collaborate with ease! #BandLab #MusicCreation 5️⃣ Shiller (s.shiller.io/): Shiller is a video chat hosting platform that provides high-resolution video content and audio collaboration settings. It also offers a digital gatekeeper vending platform, enhancing virtual communication and facilitating secure transactions. Explore the next level of video chat experiences! #Shiller #VideoChat 🎵🤝🎹 We invite you to join the Twitter Spaces event and share your thoughts on these remarkable innovations, including Shiller. Additionally, we encourage participants to suggest other tech contenders that deserve recognition. Together, let's celebrate the cutting-edge technologies shaping our future! 💡🌍 #TechInnovations #FutureTech

1
4
150
19 Jun 2023
Orca 13B, developed by Microsoft, has emerged as a powerful AI model. #ArtificialIntelligence #bard #ChatGPT #OpenAiChat #OpenAIsChatGPT #Orka13B faxnews.uk/orca-13b-the-new-…
6
173
12 Jun 2023
Interesting Ai GPT, QUANTUM Artificial intelligence domain name for sale... #ai #artificialintelligence #chatai #aichatbot #chatbotai #openaichat #openaichatbot #gptchatbot #chatgpt #quantum
1
7
8
361