DevToolKit / components /code_documentation_page.py
acecalisto3's picture
Create components/code_documentation_page.py
1223b79 verified
raw
history blame
411 Bytes
import streamlit as st
from langchain.chat_models import ChatOpenAI
def show_doc_page(chat):
st.title("Code Documentation Generator")
st.write("This page generates documentation for a given code snippet.")
code_snippet = st.text_area("Enter the code snippet:", height=200)
if st.button("Generate Documentation"):
# Implement the functionality for generating documentation
pass