Skip to content

Commit 6efbfd7

Browse files
remotesynthHarshCasper
authored andcommitted
Removed test suite stuff
1 parent 6b24abb commit 6efbfd7

File tree

2 files changed

+2
-42
lines changed

2 files changed

+2
-42
lines changed

src/components/feature-coverage/FeatureCoverage.tsx

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -46,50 +46,9 @@ const columns: ColumnDef<any>[] = [
4646
id: "image",
4747
accessorFn: row => row[Object.keys(row)[0]].availability,
4848
header: () => "Image",
49-
cell: ({ getValue }) => (getValue() ? "✔️" : ""),
5049
meta: { className: "w-1/6" },
5150
enableSorting: false,
5251
},
53-
{
54-
id: "internal_test_suite",
55-
accessorFn: row => row[Object.keys(row)[0]].internal_test_suite,
56-
header: () => "Internal Test Suite",
57-
cell: ({ getValue }) => (getValue() ? "✔️" : ""),
58-
enableSorting: false,
59-
meta: { className: "whitespace-normal" },
60-
},
61-
{
62-
id: "external_test_suite",
63-
accessorFn: row => row[Object.keys(row)[0]].external_test_suite,
64-
header: () => "External Test Suite",
65-
cell: ({ getValue }) => (getValue() ? "✔️" : ""),
66-
enableSorting: false,
67-
meta: { className: "whitespace-normal" },
68-
},
69-
{
70-
id: "terraform_test_suite",
71-
accessorFn: row => row[Object.keys(row)[0]].terraform_test_suite,
72-
header: () => "Terraform Validated",
73-
cell: ({ getValue }) => (getValue() ? "✔️" : ""),
74-
enableSorting: false,
75-
meta: { className: "whitespace-normal" },
76-
},
77-
{
78-
id: "aws_validated",
79-
accessorFn: row => row[Object.keys(row)[0]].aws_validated,
80-
header: () => "AWS Validated",
81-
cell: ({ getValue }) => (getValue() ? "✔️" : ""),
82-
enableSorting: false,
83-
meta: { className: "whitespace-normal" },
84-
},
85-
{
86-
id: "snapshot_tested",
87-
accessorFn: row => row[Object.keys(row)[0]].snapshot_tested,
88-
header: () => "Snapshot Tested",
89-
cell: ({ getValue }) => (getValue() ? "✔️" : ""),
90-
enableSorting: false,
91-
meta: { className: "whitespace-normal" },
92-
},
9352
];
9453

9554
export default function PersistenceCoverage({service}: {service: string}) {
@@ -123,7 +82,6 @@ export default function PersistenceCoverage({service}: {service: string}) {
12382

12483
return (
12584
<div className="w-full">
126-
<h2 id="api-coverage">API Coverage</h2>
12785
<div style={{ marginBottom: 12, marginTop: 12 }}>
12886
<input
12987
type="text"

src/content/docs/aws/services/bedrock.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,4 +179,6 @@ To achieve that you can search for models in the [Ollama Models library](https:/
179179
Other models available with Ollama might also work, but are not officially supported by the Bedrock implementation.
180180
* Currently, GPU models are not supported by the LocalStack Bedrock implementation.
181181

182+
## API Coverage
183+
182184
<FeatureCoverage service="bedrock" client:load />

0 commit comments

Comments
 (0)