[PR #12080] [CLOSED] feat(chat): Replicating Ollama macapp #13704

Closed
opened 2026-04-13 00:33:21 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama/pull/12080
Author: @ipv1337
Created: 8/25/2025
Status: Closed

Base: mainHead: feat/chat


📝 Commits (3)

  • f078c5c docs: Add gemini agent context and mcp design plan
  • 38fc48d feat(chat): Initial chat feature enhancements
  • 1173153 chore(ui): Continue working on chat UI

📊 Changes

39 files changed (+19295 additions, -128 deletions)

View changed files

CHAT.md (+234 -0)
GEMINI.md (+60 -0)
MCP.md (+365 -0)
REFERENCE.md (+33 -0)
docs/settings.md (+93 -0)
📝 macapp/README.md (+13 -0)
📝 macapp/forge.config.ts (+9 -2)
📝 macapp/package-lock.json (+5 -26)
📝 macapp/src/app.tsx (+118 -36)
macapp/src/chat/ChatView.tsx (+903 -0)
macapp/src/chat/Markdown.tsx (+237 -0)
macapp/src/chat/SessionManager.tsx (+164 -0)
macapp/src/chat/persistence.ts (+42 -0)
macapp/src/chat/scrollbar.css (+10 -0)
macapp/src/chat/titlebar.css (+20 -0)
macapp/src/chat/tokens.css (+92 -0)
macapp/src/chat/useChatStreaming.ts (+66 -0)
📝 macapp/src/index.ts (+307 -56)
macapp/src/providers/ChatProvider.ts (+90 -0)
macapp/src/providers/DummyTurboProvider.ts (+39 -0)

...and 19 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ollama/ollama/pull/12080 **Author:** [@ipv1337](https://github.com/ipv1337) **Created:** 8/25/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feat/chat` --- ### 📝 Commits (3) - [`f078c5c`](https://github.com/ollama/ollama/commit/f078c5c7a3f6674ca0576eb709dca40bb37dd087) docs: Add gemini agent context and mcp design plan - [`38fc48d`](https://github.com/ollama/ollama/commit/38fc48d35ad75dda3f87913c06993a9ff185dee9) feat(chat): Initial chat feature enhancements - [`1173153`](https://github.com/ollama/ollama/commit/11731538205f05d7e39c10e0b44c54e6947332b2) chore(ui): Continue working on chat UI ### 📊 Changes **39 files changed** (+19295 additions, -128 deletions) <details> <summary>View changed files</summary> ➕ `CHAT.md` (+234 -0) ➕ `GEMINI.md` (+60 -0) ➕ `MCP.md` (+365 -0) ➕ `REFERENCE.md` (+33 -0) ➕ `docs/settings.md` (+93 -0) 📝 `macapp/README.md` (+13 -0) 📝 `macapp/forge.config.ts` (+9 -2) 📝 `macapp/package-lock.json` (+5 -26) 📝 `macapp/src/app.tsx` (+118 -36) ➕ `macapp/src/chat/ChatView.tsx` (+903 -0) ➕ `macapp/src/chat/Markdown.tsx` (+237 -0) ➕ `macapp/src/chat/SessionManager.tsx` (+164 -0) ➕ `macapp/src/chat/persistence.ts` (+42 -0) ➕ `macapp/src/chat/scrollbar.css` (+10 -0) ➕ `macapp/src/chat/titlebar.css` (+20 -0) ➕ `macapp/src/chat/tokens.css` (+92 -0) ➕ `macapp/src/chat/useChatStreaming.ts` (+66 -0) 📝 `macapp/src/index.ts` (+307 -56) ➕ `macapp/src/providers/ChatProvider.ts` (+90 -0) ➕ `macapp/src/providers/DummyTurboProvider.ts` (+39 -0) _...and 19 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-13 00:33:21 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/ollama#13704