Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/feenkcom/gt4llm
A GT package for working with LLMs
https://github.com/feenkcom/gt4llm
glamorous-toolkit ide llm pharo python ux-ui wardley-maps
Last synced: 2 months ago
JSON representation
A GT package for working with LLMs
- Host: GitHub
- URL: https://github.com/feenkcom/gt4llm
- Owner: feenkcom
- License: mit
- Created: 2024-01-31T08:24:10.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-09-26T10:10:38.000Z (3 months ago)
- Last Synced: 2024-09-26T21:24:14.978Z (3 months ago)
- Topics: glamorous-toolkit, ide, llm, pharo, python, ux-ui, wardley-maps
- Language: Smalltalk
- Homepage:
- Size: 1.13 MB
- Stars: 6
- Watchers: 13
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gt4llm
is a library for working with LLMs, designed for use with [Glamorous Toolkit](https://gtoolkit.com).
Currently it includes:
- A client for [OpenAI](https://openai.com)
- A client for [Ollama](https://ollama.com)
- General utilities for working with LLMs
- Examples of integrating LLMs in user interfaces## Installation
To install the `gt4llm` package in a [Glamorous Toolkit image](https://gtoolkit.com) simply execute the following Pharo snippet in the environment:
```st
Metacello new
repository: 'github://feenkcom/gt4llm:main/src';
baseline: 'Gt4Llm';
load.
#BaselineOfGt4Llm asClass loadLepiter
```Have fun!