One. In test $n$ give the mouse a bit to drink from bottle $n$ and check if it survives (until it dies and you thus have found the poisoned bottle).
If you need to do parallel testing, the answer is: ten.
Nine mice can give you only $2^9=512$ different "answers" by their respective dieing and surviving, which is not enough for a test that must be able to give $1000$ different answers.
With ten mice, you can mix drinks by giving a bit (pun not intended) from bottle $n$ to mouse $i$, $0\le i\le 9$, if the coefficient $a_i$ in the binary expansion $n=\sum_{i=0}^9 a_i2^i$ is nonzero. Then the "bit pattern" of dead mice is exactly that of the poisened bottle number.
If you want to be more human (or rodan?), you can try to avoid bit patterns with many $1$s. As $1000=2^{10}-24$, you can drop the one pattern with ten $1$s, the ten patterns with nine $1$s and thirteen of the $45$ patterns with eight $1$s.
Then again, using $1000$ mice with one drink for each would only kill one mouse instead of about five ...