From 8ce63ea9e6e3144896c31e9632b11892bc5e131f Mon Sep 17 00:00:00 2001
From: Timothy Stiles <tim@stiles.io>
Date: Wed, 24 Jan 2024 22:51:52 -0800
Subject: [PATCH] cleaning up comments.

---
 api/data/README.md  | 3 +--
 api/example_test.go | 1 -
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/api/data/README.md b/api/data/README.md
index 6d641b1f..2681ba06 100644
--- a/api/data/README.md
+++ b/api/data/README.md
@@ -1,8 +1,7 @@
 ## Model information
 
-This directory contains a tiny llama model that is be used to test the API client in our examples.
+This directory contains a tiny llama model that is used to test the API client in our example tests.
 
 The model source is from [here](https://huggingface.co/aladar/llama-2-tiny-random-GGUF/) thanks to [aladar on huggingface](https://huggingface.co/aladar) and was likely inspired originally by this [tweet from @StasBekman](https://twitter.com/StasBekman/status/1724519457790509310) and it's [accompanying huggingface mode](https://huggingface.co/stas/tiny-random-llama-2).
-.
 
 It's a simple model that mostly produces gibberish, but for unit testing purposes it works great.
\ No newline at end of file
diff --git a/api/example_test.go b/api/example_test.go
index 84331285..b903b4d3 100644
--- a/api/example_test.go
+++ b/api/example_test.go
@@ -37,7 +37,6 @@ func TestMain(m *testing.M) {
 
 	go server.Serve(ln)
 
-	// check to see if there are any models on the server if not create one then delete after tests are done
 	// Create a new context
 	ctx := context.Background()