Skip to content

Commit

Permalink
Add more models
Browse files Browse the repository at this point in the history
Add a few more models
  • Loading branch information
svilupp authored Apr 28, 2024
2 parents 85b8dab + 39b36dc commit 4f3cbfd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ProToPortal"
uuid = "f9496bd6-a3bb-4afc-927d-7268532ebfa9"
authors = ["J S <49557684+svilupp@users.noreply.github.com> and contributors"]
version = "0.1.0-DEV"
version = "0.1.0"

[deps]
GenieFramework = "a59fdf5c-6bf0-4f5d-949c-a137c9e2f353"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ProToPortal.jl
# ProToPortal.jl

[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://svilupp.github.io/ProToPortal.jl/stable/)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://svilupp.github.io/ProToPortal.jl/dev/)
Expand All @@ -7,7 +7,7 @@
[![Aqua](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl)
[![SciML Code Style](https://img.shields.io/static/v1?label=code%20style&message=SciML&color=9558b2&labelColor=389826)](https://github.com/SciML/SciMLStyle)

Welcome to **ProToPortal**, your portal to the magic of [PromptingTools.jl](https://github.com/svilupp/PromptingTools.jl)! ProToPortal is a personal project designed to enhance productivity, potentially yours too!
Welcome to **ProToPortal**, the portal to the magic of [PromptingTools.jl](https://github.com/svilupp/PromptingTools.jl) and Julia-first LLM coding! ProToPortal is a personal project designed to enhance productivity, potentially yours too!

Given it's a UI-rich application, it will contain many bugs I'm unaware of—let me know!

Expand Down
8 changes: 6 additions & 2 deletions app.jl
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ const HISTORY_SAVE = true
@in model = isempty(PT.GROQ_API_KEY) ? "gpt4t" : "gllama370"
@in model_input = ""
@in model_submit = false
@out model_options = ["gpt4t", "gpt3t", "gllama3", "gllama370"]
## gllama3 - Llama3 8b on Groq, gllama370 - Llama3 70b on Groq,
## claude-x are Opus/Sonnet/Haiku from Anthropic Claude3, tmixtral is Mixtral 8x7b on Together.ai,
## ollama3 is Llama3 8b on Ollama
@out model_options = ["gpt4t", "gpt3t", "gllama3", "gllama370",
"ollama3", "claudeo", "claudes", "claudeh", "tmixtral"]
@in system_prompt = "You are a helpful assistant."
@in chat_temperature = 0.7
@in chat_code_eval = false
Expand Down Expand Up @@ -332,4 +336,4 @@ route("/logout", named = :success) do
redirect(:show_login)
end

end # end of module
end # end of module
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ layout: home
hero:
name: ProToPortal.jl
tagline: The Portal to Magic of PromptingTools and Julia-first LLM Coding.
tagline: The Portal to the Magic of PromptingTools and Julia-first LLM Coding.
description: Enhance your productivity with streamlined code automation and intuitive prompt management for Julia.
image:
src: https://img.icons8.com/dusk/128/portal.png
Expand Down

0 comments on commit 4f3cbfd

Please sign in to comment.