diff --git a/docs/my-website/docs/vector_store_files.md b/docs/my-website/docs/vector_store_files.md
index d5544f3499..07bd7490dd 100644
--- a/docs/my-website/docs/vector_store_files.md
+++ b/docs/my-website/docs/vector_store_files.md
@@ -26,7 +26,7 @@ Vector store support currently works **only with OpenAI vector stores and OpenAI
## Create vector store file
-`POST http://localhost:4000/v1/vector_stores/{vector_store_id}/files`
+POST http://localhost:4000/v1/vector_stores/{vector_store_id}/files
```python
from openai import OpenAI
@@ -53,7 +53,7 @@ print(vector_store_file)
## List vector store files
-`GET http://localhost:4000/v1/vector_stores/{vector_store_id}/files`
+GET http://localhost:4000/v1/vector_stores/{vector_store_id}/files
Parameters:
@@ -72,7 +72,7 @@ print(vector_store_files)
## Retrieve vector store file
-`GET http://localhost:4000/v1/vector_stores/{vector_store_id}/files/{file_id}`
+GET http://localhost:4000/v1/vector_stores/{vector_store_id}/files/{file_id}
```python
vector_store_file = client.vector_stores.files.retrieve(
@@ -84,7 +84,7 @@ print(vector_store_file)
## Delete vector store file
-`DELETE http://localhost:4000/v1/vector_stores/{vector_store_id}/files/{file_id}`
+DELETE http://localhost:4000/v1/vector_stores/{vector_store_id}/files/{file_id}
```python
deleted_vector_store_file = client.vector_stores.files.delete(
@@ -101,14 +101,14 @@ When you need raw content chunks or attribute updates, call the LiteLLM Proxy di
### Retrieve file content
```bash
-curl -X GET "http://localhost:4000/v1/vector_stores/{vector_store_id}/files/{file_id}/content" \
+curl -X GET "http://localhost:4000/v1/vector_stores/\{vector_store_id\}/files/\{file_id\}/content" \
-H "Authorization: Bearer sk-1234"
```
### Update file attributes
```bash
-curl -X POST "http://localhost:4000/v1/vector_stores/{vector_store_id}/files/{file_id}" \
+curl -X POST "http://localhost:4000/v1/vector_stores/\{vector_store_id\}/files/\{file_id\}" \
-H "Authorization: Bearer sk-1234" \
-H "Content-Type: application/json" \
-d '{