목록Amazon Web Service (2)
On the journey of
5-1. Lambda ChatGPT 먼저 ChatGPT를 구현해보기 위해서는 OpenAI 상의 API Key가 필요하다. 그러므로 아래 링크에 접속해 본인의 고유한 API를 발급받은 후, 이를 복사해두자. (재발급이 되긴 하지만 귀찮으니까...) https://platform.openai.com/account/api-keys OpenAI Platform Explore developer resources, tutorials, API docs, and dynamic examples to get the most out of OpenAI's platform. platform.openai.com 여기서 왼쪽 카테고리의 API Keys 접속 - Create new secret Key 클릭하면 됨! 다시 코드로 돌아..
요 이틀간...갑자기 조회수가 치솟아서 좀 무섭다 ,,, 뭘...검색하고 오는 거지...? 여튼 AWS Streamlit 활용교육 기록 2차 :) 9. 위젯 9.1. st.checkbox – 체크박스 import streamlit as st ## Checkbox if st.checkbox("Show/Hide"): st.write("체크박스가 선택되었습니다.") 9.2 라디오버튼 import streamlit as st ## Radio button status = st.radio("Select status.", ("Active", "Inactive")) if status == "Active": st.success("활성화 되었습니다.") else: st.warning("비활성화 되었습니다.") 9.3. s..