Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pwntus/laila-ai
I'm your virtual friend. I'll learn from our conversation and remember details about you.
https://github.com/pwntus/laila-ai
Last synced: 5 days ago
JSON representation
I'm your virtual friend. I'll learn from our conversation and remember details about you.
- Host: GitHub
- URL: https://github.com/pwntus/laila-ai
- Owner: Pwntus
- Created: 2023-08-11T09:46:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-22T14:45:52.000Z (11 months ago)
- Last Synced: 2024-12-15T19:05:36.878Z (7 days ago)
- Language: Vue
- Homepage: https://laila-ai.com
- Size: 1.58 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
> Discontinued, not hosted anymore.
# Laila AI
![Laila AI](./public/cover.jpg)
## How it works
This app is powered by:
🚀 [Replicate](https://replicate.com/?utm_source=project&utm_campaign=laila-ai), a platform for running machine learning models in the cloud.
🖍️ [Llama 2 13B](https://replicate.com/a16z-infra/llama-2-13b-chat?utm_source=project&utm_campaign=laila-ai), an open-source large language machine learning model from Meta that is fine tuned for chat completions.
▲ [Vercel](https://vercel.com/), a platform for running web apps.
⚡️ Nuxt.js [server-side API routes](server/api), for talking to Replicate's API.
👀 Nuxt.js Vue components, for the browser UI.
🍃 [Vuetify](https://vuetifyjs.com/en/), a component framwork for Vue.
## Development
1. Install a recent version of [Node.js](https://nodejs.org/)
1. Copy your [Replicate API token](https://replicate.com/account?utm_source=project&utm_campaign=laila-ai) and set it in your environment:
```
echo "REPLICATE_API_TOKEN=" > .env.local
```
1. Install dependencies and run the server:
```
npm install
npm run dev
```
1. Open [localhost:3000](http://localhost:3000) in your browser. That's it!