Safetensors
GGUF
Turkish
llama
Llama-3
instruct
finetune
chatml
gpt4
synthetic data
distillation
function calling
json mode
axolotl
roleplaying
chat
Instructions to use tda45/TdAI with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use tda45/TdAI with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tda45/TdAI", filename="llama.cpp/models/ggml-vocab-aquila.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tda45/TdAI with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf tda45/TdAI # Run inference directly in the terminal: llama cli -hf tda45/TdAI
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tda45/TdAI # Run inference directly in the terminal: llama cli -hf tda45/TdAI
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf tda45/TdAI # Run inference directly in the terminal: ./llama-cli -hf tda45/TdAI
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf tda45/TdAI # Run inference directly in the terminal: ./build/bin/llama-cli -hf tda45/TdAI
Use Docker
docker model run hf.co/tda45/TdAI
- LM Studio
- Jan
- Ollama
How to use tda45/TdAI with Ollama:
ollama run hf.co/tda45/TdAI
- Unsloth Studio
How to use tda45/TdAI with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for tda45/TdAI to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for tda45/TdAI to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tda45/TdAI to start chatting
- Atomic Chat new
- Docker Model Runner
How to use tda45/TdAI with Docker Model Runner:
docker model run hf.co/tda45/TdAI
- Lemonade
How to use tda45/TdAI with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tda45/TdAI
Run and chat with the model
lemonade run user.TdAI-{{QUANT_TAG}}List all available models
lemonade list
TdAI / llama.cpp /tools /ui /src /lib /components /app /navigation /SidebarNavigation /SidebarNavigationActions.svelte
| <script lang="ts"> | |
| import { goto } from '$app/navigation'; | |
| import { page } from '$app/state'; | |
| import { Search } from '@lucide/svelte'; | |
| import { ActionIcon, KeyboardShortcutInfo, SearchInput } from '$lib/components/app'; | |
| import { Button } from '$lib/components/ui/button'; | |
| import { | |
| ICON_STRIP_TRANSITION_DURATION, | |
| ICON_STRIP_TRANSITION_DELAY_MULTIPLIER, | |
| ROUTES, | |
| SIDEBAR_ACTIONS_ITEMS | |
| } from '$lib/constants'; | |
| import { isMobile } from '$lib/stores/viewport.svelte'; | |
| import { TooltipSide } from '$lib/enums'; | |
| import { fade } from 'svelte/transition'; | |
| import { circIn } from 'svelte/easing'; | |
| import { onMount } from 'svelte'; | |
| import type { Component } from 'svelte'; | |
| interface Props { | |
| class: string; | |
| isExpandedMode: boolean; | |
| isSearchModeActive: boolean; | |
| searchQuery: string; | |
| onSearchDeactivated?: () => void; | |
| onSearchClick?: () => void; | |
| onNewChat?: () => void; | |
| } | |
| let { | |
| class: className, | |
| isExpandedMode = false, | |
| isSearchModeActive = $bindable(false), | |
| searchQuery = $bindable(''), | |
| onSearchDeactivated, | |
| onSearchClick, | |
| onNewChat | |
| }: Props = $props(); | |
| let initialized = $state(false); | |
| let showIcons = $state(false); | |
| let searchInputRef = $state<HTMLInputElement | null>(null); | |
| const isOnMobile = $derived(isMobile.current); | |
| $effect(() => { | |
| if (isSearchModeActive && searchInputRef) { | |
| searchInputRef.focus(); | |
| } | |
| }); | |
| onMount(() => { | |
| showIcons = true; | |
| setTimeout(() => { | |
| initialized = true; | |
| }, ICON_STRIP_TRANSITION_DELAY_MULTIPLIER * SIDEBAR_ACTIONS_ITEMS.length); | |
| }); | |
| function handleSearchModeDeactivate() { | |
| isSearchModeActive = false; | |
| searchQuery = ''; | |
| onSearchDeactivated?.(); | |
| } | |
| function isItemActive(item: { | |
| activeRouteId?: string; | |
| activeRoutePrefix?: string; | |
| activeUrlIncludes?: string; | |
| }): boolean { | |
| if (item.activeRouteId) { | |
| return page.route.id === item.activeRouteId; | |
| } | |
| if (item.activeRoutePrefix) { | |
| return !!page.route.id?.startsWith(item.activeRoutePrefix); | |
| } | |
| if (item.activeUrlIncludes) { | |
| return page.url?.hash?.includes(item.activeUrlIncludes) ?? false; | |
| } | |
| return false; | |
| } | |
| </script> | |
| {#snippet itemIcon(IconComponent: Component)} | |
| <IconComponent class="h-4 w-4" /> | |
| {/snippet} | |
| {#if isSearchModeActive} | |
| <div class="px-4 my-2"> | |
| <SearchInput | |
| bind:value={searchQuery} | |
| bind:ref={searchInputRef} | |
| onClose={handleSearchModeDeactivate} | |
| onKeyDown={(e) => e.key === 'Escape' && handleSearchModeDeactivate()} | |
| placeholder="Search conversations..." | |
| /> | |
| </div> | |
| {:else if isExpandedMode || isOnMobile} | |
| <div | |
| class="{className} flex flex-col gap-5 md:gap-1 mt-2 md:mt-0 {!isExpandedMode && isOnMobile | |
| ? 'hidden pointer-events-none' | |
| : ''}" | |
| > | |
| {#each SIDEBAR_ACTIONS_ITEMS as item, i (item.tooltip)} | |
| {@const isActive = isItemActive(item)} | |
| {@const isSearchOnMobile = item.icon === Search && isMobile.current} | |
| {@const itemHref = isSearchOnMobile ? ROUTES.SEARCH : item.route} | |
| {@const itemOnClick = item.route | |
| ? () => { | |
| onNewChat?.(); | |
| goto(item.route!); | |
| } | |
| : isSearchOnMobile | |
| ? undefined | |
| : onSearchClick} | |
| {@const itemTransition = { | |
| duration: ICON_STRIP_TRANSITION_DURATION, | |
| delay: !initialized | |
| ? ICON_STRIP_TRANSITION_DELAY_MULTIPLIER + i * ICON_STRIP_TRANSITION_DELAY_MULTIPLIER | |
| : 0, | |
| easing: circIn | |
| }} | |
| {#if showIcons} | |
| <div transition:fade={itemTransition}> | |
| <Button | |
| class="w-full min-w-9 justify-between px-2 backdrop-blur-none! hover:[&>kbd]:opacity-100 {isActive | |
| ? 'bg-accent text-accent-foreground' | |
| : ''}" | |
| href={itemHref} | |
| onclick={itemOnClick} | |
| variant="ghost" | |
| size="default" | |
| > | |
| <span class="flex min-w-0 items-center px-0.5 gap-2"> | |
| {@render itemIcon(item.icon)} | |
| {#if showIcons} | |
| <span | |
| in:fade={{ duration: 150, easing: circIn, delay: 50 }} | |
| out:fade={{ duration: 100 }} | |
| class="min-w-0 truncate">{item.tooltip}</span | |
| > | |
| {/if} | |
| </span> | |
| {#if item.keys} | |
| <KeyboardShortcutInfo keys={item.keys} /> | |
| {/if} | |
| </Button> | |
| </div> | |
| {/if} | |
| {/each} | |
| </div> | |
| {:else} | |
| <div class="{className} flex-col gap-1 hidden md:flex"> | |
| {#each SIDEBAR_ACTIONS_ITEMS as item, i (item.tooltip)} | |
| {@const isActive = isItemActive(item)} | |
| {@const isSearchOnMobile = item.icon === Search && isMobile.current} | |
| {@const itemOnClick = item.route | |
| ? () => { | |
| onNewChat?.(); | |
| goto(item.route!); | |
| } | |
| : isSearchOnMobile | |
| ? undefined | |
| : onSearchClick} | |
| {@const itemTransition = { | |
| duration: ICON_STRIP_TRANSITION_DURATION, | |
| delay: !initialized | |
| ? ICON_STRIP_TRANSITION_DELAY_MULTIPLIER + i * ICON_STRIP_TRANSITION_DELAY_MULTIPLIER | |
| : 0, | |
| easing: circIn | |
| }} | |
| {#if showIcons} | |
| <div transition:fade={itemTransition}> | |
| <ActionIcon | |
| icon={item.icon} | |
| tooltip={item.tooltip} | |
| tooltipSide={TooltipSide.RIGHT} | |
| size="lg" | |
| iconSize="h-4 w-4" | |
| class="h-9 w-9 rounded-full hover:bg-accent! {isActive | |
| ? 'bg-accent text-accent-foreground' | |
| : ''}" | |
| onclick={itemOnClick} | |
| /> | |
| </div> | |
| {/if} | |
| {/each} | |
| </div> | |
| {/if} | |