[PR #505] [MERGED] chore: bump LITS 0.9 #548

Closed
opened 2026-02-15 20:15:15 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/run-llama/create-llama/pull/505
Author: @thucpn
Created: 2/18/2025
Status: Merged
Merged: 2/19/2025
Merged by: @marcusschiesser

Base: mainHead: tp/bump-lits-0.9


📝 Commits (9)

  • e5b52c1 fix: generate embeddings
  • ac7bd9e missing peer deps in llamaindex
  • c584632 feat: append deps based on vectordb
  • feca4fe update import to workspace packages
  • 2e8fde2 fix: use fixed mongo client version
  • e2a1734 fix mypy
  • 3de5d2b seperate provider settings
  • 94faa1c Create grumpy-snails-listen.md
  • 156813c bump: 0.9.1

📊 Changes

31 files changed (+274 additions, -213 deletions)

View changed files

.changeset/grumpy-snails-listen.md (+5 -0)
📝 helpers/typescript.ts (+90 -22)
📝 templates/components/loaders/typescript/file/loader.ts (+1 -1)
📝 templates/components/loaders/typescript/llama_parse/loader.ts (+2 -2)
templates/components/providers/typescript/anthropic/provider.ts (+19 -0)
templates/components/providers/typescript/azure-openai/provider.ts (+49 -0)
templates/components/providers/typescript/gemini/provider.ts (+16 -0)
templates/components/providers/typescript/groq/provider.ts (+18 -0)
templates/components/providers/typescript/mistral/provider.ts (+16 -0)
templates/components/providers/typescript/ollama/provider.ts (+16 -0)
templates/components/providers/typescript/openai/provider.ts (+17 -0)
📝 templates/components/settings/typescript/settings.ts (+4 -165)
📝 templates/components/vectordbs/typescript/astra/generate.ts (+1 -1)
📝 templates/components/vectordbs/typescript/astra/index.ts (+1 -1)
📝 templates/components/vectordbs/typescript/chroma/generate.ts (+1 -1)
📝 templates/components/vectordbs/typescript/chroma/index.ts (+1 -1)
📝 templates/components/vectordbs/typescript/milvus/generate.ts (+1 -1)
📝 templates/components/vectordbs/typescript/milvus/index.ts (+1 -1)
📝 templates/components/vectordbs/typescript/mongo/generate.ts (+1 -1)
📝 templates/components/vectordbs/typescript/mongo/index.ts (+1 -1)

...and 11 more files

📄 Description

Summary by CodeRabbit

  • New Features

    • Introduced unified configuration for language and embedding model integrations across various providers.
    • Added new setupProvider function for multiple providers to streamline initialization.
  • Refactor

    • Streamlined provider initialization and updated component integration paths for vector databases, ensuring a cleaner setup.
    • Simplified dependency management for vector databases.
  • Chores

    • Updated core dependencies and bumped component versions to improve stability and performance.

🔄 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/run-llama/create-llama/pull/505 **Author:** [@thucpn](https://github.com/thucpn) **Created:** 2/18/2025 **Status:** ✅ Merged **Merged:** 2/19/2025 **Merged by:** [@marcusschiesser](https://github.com/marcusschiesser) **Base:** `main` ← **Head:** `tp/bump-lits-0.9` --- ### 📝 Commits (9) - [`e5b52c1`](https://github.com/run-llama/create-llama/commit/e5b52c19ed26d5ee212551747146d51671a3852b) fix: generate embeddings - [`ac7bd9e`](https://github.com/run-llama/create-llama/commit/ac7bd9e2dda5f9d6b50ca89037a8a6303fb5602c) missing peer deps in llamaindex - [`c584632`](https://github.com/run-llama/create-llama/commit/c58463219b7ab2b8f2c8bf998d60d06bb4a0d206) feat: append deps based on vectordb - [`feca4fe`](https://github.com/run-llama/create-llama/commit/feca4fe123e5dd1a633c2d0a37d9d1d02abe2f85) update import to workspace packages - [`2e8fde2`](https://github.com/run-llama/create-llama/commit/2e8fde255db2db5156f7b3acd9a7c9ae56a91cf1) fix: use fixed mongo client version - [`e2a1734`](https://github.com/run-llama/create-llama/commit/e2a1734137de8bd3714ca13f4db011eacf0d1959) fix mypy - [`3de5d2b`](https://github.com/run-llama/create-llama/commit/3de5d2b031fe5587d156ef50e6360f0c8f0f4b65) seperate provider settings - [`94faa1c`](https://github.com/run-llama/create-llama/commit/94faa1c214b0e7596ec11b46f6186a32db5bcd84) Create grumpy-snails-listen.md - [`156813c`](https://github.com/run-llama/create-llama/commit/156813cd3c4f33f372ff0a61bfdc41233328bd7d) bump: 0.9.1 ### 📊 Changes **31 files changed** (+274 additions, -213 deletions) <details> <summary>View changed files</summary> ➕ `.changeset/grumpy-snails-listen.md` (+5 -0) 📝 `helpers/typescript.ts` (+90 -22) 📝 `templates/components/loaders/typescript/file/loader.ts` (+1 -1) 📝 `templates/components/loaders/typescript/llama_parse/loader.ts` (+2 -2) ➕ `templates/components/providers/typescript/anthropic/provider.ts` (+19 -0) ➕ `templates/components/providers/typescript/azure-openai/provider.ts` (+49 -0) ➕ `templates/components/providers/typescript/gemini/provider.ts` (+16 -0) ➕ `templates/components/providers/typescript/groq/provider.ts` (+18 -0) ➕ `templates/components/providers/typescript/mistral/provider.ts` (+16 -0) ➕ `templates/components/providers/typescript/ollama/provider.ts` (+16 -0) ➕ `templates/components/providers/typescript/openai/provider.ts` (+17 -0) 📝 `templates/components/settings/typescript/settings.ts` (+4 -165) 📝 `templates/components/vectordbs/typescript/astra/generate.ts` (+1 -1) 📝 `templates/components/vectordbs/typescript/astra/index.ts` (+1 -1) 📝 `templates/components/vectordbs/typescript/chroma/generate.ts` (+1 -1) 📝 `templates/components/vectordbs/typescript/chroma/index.ts` (+1 -1) 📝 `templates/components/vectordbs/typescript/milvus/generate.ts` (+1 -1) 📝 `templates/components/vectordbs/typescript/milvus/index.ts` (+1 -1) 📝 `templates/components/vectordbs/typescript/mongo/generate.ts` (+1 -1) 📝 `templates/components/vectordbs/typescript/mongo/index.ts` (+1 -1) _...and 11 more files_ </details> ### 📄 Description <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced unified configuration for language and embedding model integrations across various providers. - Added new `setupProvider` function for multiple providers to streamline initialization. - **Refactor** - Streamlined provider initialization and updated component integration paths for vector databases, ensuring a cleaner setup. - Simplified dependency management for vector databases. - **Chores** - Updated core dependencies and bumped component versions to improve stability and performance. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 20:15:15 -05:00
yindo closed this issue 2026-02-15 20:15:15 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: run-llama/create-llama#548