Skip to content

Commit

Permalink
docs: ✏️ actions
Browse files Browse the repository at this point in the history
added
  • Loading branch information
StanGirard committed Jul 3, 2023
1 parent ac29898 commit 1280931
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 6 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/vercel-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Deploy Docs Deployment
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_DOC_PROJECT_ID }}
on:
push:
branches: [ "main" ]
paths:
- 'docs/**'
jobs:
Deploy-Preview:
environment: production
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
12 changes: 6 additions & 6 deletions docs/docs/roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,22 @@ Quivr is a platform for building second brains and personnal assistants. It is a
- [X] Multiple chats
- [X] Use own keys
- [ ] **v0.2** - Time to share
- [ ] Improved Documentation
- [X] Improved Documentation
- [ ] Add a tutorial
- [ ] Add a FAQ
- [X] Create a website - https://brain.quivr.app
- [ ] Create public & private brains
- [X] Create public & private brains
- [ ] Allow users to share/subcribe brains
- [ ] Improved UX/UI
- [ ] Stream response
- [ ] Better error handling
- [ ] Mobile friendly
- [X] Better error handling
- [X] Mobile friendly
- [ ] Chat with one or more files
- [ ] Better API Interface
- [X] Better API Interface
- [ ] Refactor backend & frontend for better development experience
- [ ] **v0.3** - Make it smarter & private
- [ ] Private Brains
- [ ] Use PrivateGPT as LLM and Embedding
- [X] Use PrivateGPT as LLM and Embedding
- [ ] Better Storage
- [ ] Use a vectorstore for storing embeddings
- [ ] Add metadata
Expand Down

0 comments on commit 1280931

Please sign in to comment.