This commit is contained in:
Paul Gauthier 2024-04-26 14:23:42 -07:00
parent 3f5cdb603c
commit bf55573814

View file

@ -2,64 +2,22 @@
import os import os
import random import random
import sys
from pathlib import Path from pathlib import Path
import streamlit as st import streamlit as st
from aider.coders import Coder from aider.coders import Coder
from aider.dump import dump # noqa: F401 from aider.dump import dump # noqa: F401
from aider.main import main from aider.main import main as cli_main
if "recent_msgs_num" not in st.session_state: if "recent_msgs_num" not in st.session_state:
st.session_state.recent_msgs_num = 0 st.session_state.recent_msgs_num = 0
chat_controls = None
diff = Path("aider/tmp.diff").read_text() diff = Path("aider/tmp.diff").read_text()
def mock_tool_output():
global chat_controls
messages = """Applied edit to new_program.py"""
# st.info(messages)
if chat_controls:
chat_controls.empty()
chat_controls = st.empty()
with chat_controls:
container = st.container()
with container:
# cols = st.columns([0.8,0.2])
# with cols[0]:
# with st.expander(messages):
# diff = Path("aider/tmp.diff").read_text()
# st.code(diff, language="diff")
with st.expander(
f"Commit `33a242c`: Added sample python that highlights language features \n{messages}"
):
# st.info(messages)
st.code(diff, language="diff")
st.button(
"Undo commit `33a242c`",
key=random.random(),
help="wtf?",
)
if False:
st.button("Allow edits to `foobar.py`", key=random.random(), help="??")
st.button("Allow creation of new file `some/new/file.js`", key=random.random())
st.button("Add `baz/foo.py` to the chat", key=random.random())
# st.toggle("Show diffs", key=random.random())
# st.toggle("Undo this commit `33a242c`", key=random.random(), help="?")
# cost = random.random() * 0.003 + 0.001
# st.caption(f"${cost:0.4f} to send the next message", help="# header\n- list\n- list\n")
def recent_msgs(): def recent_msgs():
msgs = [ msgs = [
"write a python program that shows off some python features", "write a python program that shows off some python features",
@ -97,36 +55,31 @@ def search(text=None):
return results return results
# selected_value = st_searchbox(search)
@st.cache_resource @st.cache_resource
def get_coder(): def get_coder():
coder = main(return_coder=True) coder = cli_main(return_coder=True)
if isinstance(coder, Coder): if isinstance(coder, Coder):
return coder return coder
raise ValueError() raise ValueError()
coder = get_coder() class GUI:
def announce(self):
lines = self.coder.get_announcements()
def announce(coder):
lines = coder.get_announcements()
lines = " \n".join(lines) lines = " \n".join(lines)
st.info(lines) st.info(lines)
def do_sidebar(self):
with st.sidebar: with st.sidebar:
st.title("Aider") st.title("Aider")
cmds_tab, settings_tab = st.tabs(["Commands", "Settings"]) self.cmds_tab, self.settings_tab = st.tabs(["Commands", "Settings"])
with cmds_tab: def do_cmd_tab(self):
with st.expander("Recommended actions", expanded=True): with st.expander("Recommended actions", expanded=True):
with st.popover("Create a git repo to track changes"): with st.popover("Create a git repo to track changes"):
st.write( st.write(
"Aider works best when your code is stored in a git repo. \n[See the FAQ for more" "Aider works best when your code is stored in a git repo. \n[See the FAQ for"
" info](https://aider.chat/docs/faq.html#how-does-aider-use-git)" " more info](https://aider.chat/docs/faq.html#how-does-aider-use-git)"
) )
st.button("Create git repo", key=random.random(), help="?") st.button("Create git repo", key=random.random(), help="?")
@ -140,27 +93,30 @@ with cmds_tab:
search(), search(),
default=["aider/main.py", "aider/io.py"], default=["aider/main.py", "aider/io.py"],
help=( help=(
"Only add the files that need to be *edited* for the task you are working on. Aider" "Only add the files that need to be *edited* for the task you are working on."
" will pull in other code to provide relevant context to the LLM." " Aider will pull in other code to provide relevant context to the LLM."
), ),
) )
with st.popover("Add web page"): with st.popover("Add web page"):
st.markdown("www") st.markdown("www")
name = st.text_input("URL?") st.text_input("URL?")
with st.popover("Add image"): with st.popover("Add image"):
st.markdown("Hello World 👋") st.markdown("Hello World 👋")
st.file_uploader("Image file") st.file_uploader("Image file")
with st.popover("Run shell commands, tests, etc"): with st.popover("Run shell commands, tests, etc"):
st.markdown( st.markdown(
"Run a shell command and optionally share the output with the LLM. This is a great" "Run a shell command and optionally share the output with the LLM. This is a"
" way to run your program or run tests and have the LLM fix bugs." " great way to run your program or run tests and have the LLM fix bugs."
) )
name = st.text_input("Command:") st.text_input("Command:")
st.radio( st.radio(
"Share the command output with the LLM?", "Share the command output with the LLM?",
[ [
"Review the output and decide whether to share", "Review the output and decide whether to share",
"Automatically share the output on non-zero exit code (ie, if any tests fail)", (
"Automatically share the output on non-zero exit code (ie, if any tests"
" fail)"
),
], ],
) )
st.selectbox( st.selectbox(
@ -185,7 +141,7 @@ with cmds_tab:
st.button("Commit any pending changes") st.button("Commit any pending changes")
with st.popover("Run git command"): with st.popover("Run git command"):
st.markdown("## Run git command") st.markdown("## Run git command")
name = st.text_input("git", value="git ") st.text_input("git", value="git ")
st.button("Run") st.button("Run")
st.selectbox( st.selectbox(
"Recent git commands", "Recent git commands",
@ -195,68 +151,121 @@ with cmds_tab:
], ],
) )
recent_msgs_empty = st.empty() self.recent_msgs_empty = st.empty()
def do_messages_container(self):
self.messages = st.container()
# chat_tab, settings_tab = st.tabs(["Chat", "Settings"]) # stuff a bunch of vertical whitespace at the top
# to get all the chat text to the bottom
self.messages.container(height=1200, border=False)
with self.messages:
self.announce()
with self.recent_msgs_empty:
self.old_prompt = recent_msgs()
messages = st.container() for msg in st.session_state.messages:
with self.messages.chat_message(msg["role"]):
# stuff a bunch of vertical whitespace at the top
# to get all the chat text to the bottom
messages.container(height=1200, border=False)
with messages:
announce(coder)
with recent_msgs_empty:
old_prompt = recent_msgs()
if "messages" not in st.session_state:
st.session_state["messages"] = [{"role": "assistant", "content": "How can I help you?"}]
for msg in st.session_state.messages:
with messages.chat_message(msg["role"]):
st.write(msg["content"]) st.write(msg["content"])
cost = random.random() * 0.003 + 0.001 cost = random.random() * 0.003 + 0.001
st.caption(f"${cost:0.4f}") st.caption(f"${cost:0.4f}")
with messages: def mock_tool_output(self):
mock_tool_output() messages = """Applied edit to new_program.py"""
# st.info(messages)
# inp_empty = st.empty() if self.chat_controls:
self.chat_controls.empty()
self.chat_controls = st.empty()
with self.chat_controls:
container = st.container()
def clear_controls(): with container:
if chat_controls: # cols = st.columns([0.8,0.2])
chat_controls.empty() # with cols[0]:
# with st.expander(messages):
# diff = Path("aider/tmp.diff").read_text()
# st.code(diff, language="diff")
with st.expander(
"Commit `33a242c`: Added sample python that highlights language features "
f" \n{messages}"
):
# st.info(messages)
st.code(diff, language="diff")
st.button(
"Undo commit `33a242c`",
key=random.random(),
help="wtf?",
)
prompt = st.chat_input("Say something", on_submit=clear_controls) if False:
# dump(old_prompt, prompt) st.button("Allow edits to `foobar.py`", key=random.random(), help="??")
st.button("Allow creation of new file `some/new/file.js`", key=random.random())
st.button("Add `baz/foo.py` to the chat", key=random.random())
if old_prompt: def clear_controls(self):
prompt = old_prompt if self.chat_controls:
self.chat_controls.empty()
def init_state(self):
if "messages" not in st.session_state:
st.session_state["messages"] = [{"role": "assistant", "content": "How can I help you?"}]
def __init__(self, coder):
self.coder = coder
self.chat_controls = None
self.init_state()
self.do_sidebar()
with self.cmds_tab:
self.do_cmd_tab()
self.do_messages_container()
with self.messages:
self.mock_tool_output()
self.chat()
def chat(self):
prompt = st.chat_input("Say something", on_submit=self.clear_controls)
# dump(old_prompt, prompt)
if self.old_prompt:
prompt = self.old_prompt
st.session_state.recent_msgs_num += 1 st.session_state.recent_msgs_num += 1
with recent_msgs_empty: with self.recent_msgs_empty:
old_prompt = recent_msgs() # do I need the assignment here?
self.old_prompt = recent_msgs()
if prompt: if prompt:
if chat_controls: self.clear_controls()
chat_controls.empty()
st.session_state.messages.append({"role": "user", "content": prompt}) st.session_state.messages.append({"role": "user", "content": prompt})
with messages.chat_message("user"): with self.messages.chat_message("user"):
st.write(prompt) st.write(prompt)
res = coder.run(prompt) res = self.coder.run(prompt)
st.session_state.messages.append({"role": "assistant", "content": res}) st.session_state.messages.append({"role": "assistant", "content": res})
with messages.chat_message("assistant"): with self.messages.chat_message("assistant"):
st.write(res) st.write(res)
cost = random.random() * 0.003 + 0.001 cost = random.random() * 0.003 + 0.001
st.caption(f"${cost:0.4f}") st.caption(f"${cost:0.4f}")
with messages: with self.messages:
mock_tool_output() self.mock_tool_output()
def gui_main():
coder = get_coder()
GUI(coder)
if __name__ == "__main__":
status = gui_main()
sys.exit(status)