Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refacto: rename project name #45

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# LLaMa Web
# CapacitiveML

The LLaMa Web is a web interface to chat or play with LLaMa based models.
The CapacitiveML is a web interface to chat or play with LLaMa based models.

## Installation

Expand Down Expand Up @@ -90,7 +90,7 @@ docker-compose up -d
### Requirements
- a server that can run an app similar to `examples/alt-backend/mixtral8x7B.py`

### Setup in LLaMa Web
### Setup in CapacitiveML

1. Go to the playground
2. Then go to the `Models` tab
Expand Down
2 changes: 1 addition & 1 deletion api/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@ungarscool1/llama-web",
"name": "@ungarscool1/capacitiveml-api",
"version": "1.0.0",
"description": "Llama web interface for llama.cpp in docker container",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@ungarscool1/llama-client",
"name": "@ungarscool1/capacitiveml-client",
"version": "0.0.1",
"author": "Léo Godard <[email protected]>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion client/src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width" />
<title>LLaMa AI</title>
<title>CapacitiveML</title>
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover" class="bg-white dark:bg-gray-900">
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/chat/sidebar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@
/>
</svg>
</button>
<a href="/chat" class="text-2xl dark:text-white m-2">LLaMa AI</a>
<a href="/chat" class="text-2xl dark:text-white m-2">CapacitiveML</a>
<DarkMode
btnClass="text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 rounded-lg text-sm p-2.5"
/>
Expand Down
2 changes: 1 addition & 1 deletion client/src/routes/playground/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
let:toggle
>
<NavBrand href="/playground">
<span class="self-center whitespace-nowrap text-xl font-semibold dark:text-white">LLaMa AI</span
<span class="self-center whitespace-nowrap text-xl font-semibold dark:text-white">CapacitiveML</span
>
</NavBrand>
<NavHamburger on:click={toggle} />
Expand Down
2 changes: 1 addition & 1 deletion client/src/routes/playground/api/docs/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
<div class="p-6">
<h1 class="text-4xl font-extrabold dark:text-white">API documentation</h1>
<p class="text-sm text-gray-500 dark:text-gray-400">
API documentation page for LLaMa AI. Get started now.
API documentation page for CapacitiveML. Get started now.
</p>
<div class="p-5">
<p class="mb-3 text-sm text-gray-500 md:text-lg dark:text-gray-400">API endpoint: <span>{env.PUBLIC_API_URL}</span></p>
Expand Down