/Simple_ODE_Examples

Primary LanguageJupyter NotebookMIT LicenseMIT

Simple_ODE_Examples

Table of contents

  1. Introduction
  2. Python Environment
  3. Command-line Versions
  4. Jupyter Notebooks

Introduction

This repository contains some simple examples of using the OpenAI API to explore simple ordinary differential equations and implemenmt solutions in python.

Python Environment

This code requires the openai API. This can be set up using conda.

conda create --name llm_apis python=3
conda activate llm_apis
conda install pip
pip install openai
pip install scipy
pip install jupyter

Command-line Versions

These can be executed on the commandline after you have activated your conda environment.

conda activate llm_apis
python ./

Jupyter Notebooks

These are jupyter notebooks and require jupyter to be installed in the python environment.