Compare commits

...

6 Commits

Author SHA1 Message Date
Jerry Liu 3e8c923641 cr 2023-11-17 19:39:23 -08:00
yisding cfee282c28 create-llama 0.0.3 2023-11-13 20:19:43 -08:00
yisding 91b42a3539 changeset 2023-11-13 20:15:18 -08:00
yisding 02b1d176c5 Merge pull request #180 from run-llama/fix/create-llama-version
fix: use llamaindex version and not create-llama version
2023-11-13 20:00:05 -08:00
Marcus Schiesser 63d072b8cc fix: use llamaindex version and not create-llama version 2023-11-14 10:50:26 +07:00
yisding 256d44f255 create llama 0.0.2 and llamaindex 0.0.35 2023-11-13 18:10:18 -08:00
11 changed files with 44 additions and 14 deletions
-5
View File
@@ -1,5 +0,0 @@
---
"llamaindex": patch
---
Add multimodal support (thanks Marcus)
-5
View File
@@ -1,5 +0,0 @@
---
"create-llama": patch
---
Hello Create Llama (thanks Marcus!)
+7
View File
@@ -1,5 +1,12 @@
# simple
## 0.0.33
### Patch Changes
- Updated dependencies [63f2108]
- llamaindex@0.0.35
## 0.0.32
### Patch Changes
+1 -1
View File
@@ -1,5 +1,5 @@
{
"version": "0.0.32",
"version": "0.0.33",
"private": true,
"name": "simple",
"dependencies": {
+6
View File
@@ -1,5 +1,11 @@
# llamaindex
## 0.0.35
### Patch Changes
- 63f2108: Add multimodal support (thanks Marcus)
## 0.0.34
### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "llamaindex",
"version": "0.0.34",
"version": "0.0.35",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.9.0",
+13
View File
@@ -0,0 +1,13 @@
# create-llama
## 0.0.3
### Patch Changes
- 91b42a3: change version (thanks Marcus)
## 0.0.2
### Patch Changes
- e2a6805: Hello Create Llama (thanks Marcus!)
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "create-llama",
"version": "0.0.1",
"version": "0.0.3",
"keywords": [
"rag",
"llamaindex",
+1 -1
View File
@@ -5,7 +5,7 @@ import fs from "fs/promises";
import os from "os";
import path from "path";
import { bold, cyan } from "picocolors";
import { version } from "../package.json";
import { version } from "../../core/package.json";
import { PackageManager } from "../helpers/get-pkg-manager";
import {
@@ -9,6 +9,13 @@ poetry install
poetry shell
```
By default, we use the OpenAI LLM (though you can customize, see app/api/routers/chat.py). As a result you need to specify an `OPENAI_API_KEY` in an .env file in this directory.
Example `backend/.env` file:
```
OPENAI_API_KEY=<openai_api_key>
```
Second, run the development server:
```
@@ -9,6 +9,13 @@ poetry install
poetry shell
```
By default, we use the OpenAI LLM (though you can customize, see app/api/routers/chat.py). As a result you need to specify an `OPENAI_API_KEY` in an .env file in this directory.
Example `backend/.env` file:
```
OPENAI_API_KEY=<openai_api_key>
```
Second, run the development server:
```